On 12.08.2012 22:07, Ian Pilcher wrote: > Another rev. I figured out how to use git reset --hard and --soft to > make regenerating the patch series a bit easier. (It helped a ton > that all of the later changes are isolated in a single file.) I still > feel like I'm probably missing an easier way to go back a fix a simple > type, however. Sounds like you should give interactive rebasing a try:
git rebase -i <whatever your patches are based uppon> It fires up an editor allowing you to make changes to you individual patches. I hope that helps, Christian. > > * Fix typo > > * Split adding new quirk flags and adding new quirk into separate > patches > > After reveiwing stable_kernel_rules.txt, I don't think that these > patches are appropriate for -stable. I don't consider it to be > "obviously correct," and it certainly isn't less than 100 lines. > Thus, I'm not going to submit this for inclusion in -stable. > > Ian Pilcher (3): > drm: Add user-defined EDID quirks capability > drm: Add EDID quirks to disable HDMI audio and InfoFrames > drm: Add EDID quirk for LG L246WP > > Documentation/EDID/edid_quirks.txt | 126 +++++++++ > drivers/gpu/drm/drm_drv.c | 2 + > drivers/gpu/drm/drm_edid.c | 524 > +++++++++++++++++++++++++++++++++---- > drivers/gpu/drm/drm_stub.c | 6 + > drivers/gpu/drm/drm_sysfs.c | 19 ++ > include/drm/drmP.h | 10 + > include/drm/drm_edid.h | 13 +- > 7 files changed, 639 insertions(+), 61 deletions(-) > create mode 100644 Documentation/EDID/edid_quirks.txt >