From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Christian_K=F6nig?= Subject: Re: [PATCH v4 0/3] Enhanced EDID quirk functionality Date: Sun, 12 Aug 2012 23:29:06 +0200 Message-ID: <50282022.4000507@vodafone.de> References: <1344754732.4980.5.camel@mattotaupa> <1344802080-9575-1-git-send-email-arequipeno@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from outgoing.email.vodafone.de (outgoing.email.vodafone.de [139.7.28.128]) by gabe.freedesktop.org (Postfix) with ESMTP id CB9539E7C0 for ; Sun, 12 Aug 2012 14:29:10 -0700 (PDT) In-Reply-To: <1344802080-9575-1-git-send-email-arequipeno@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org Errors-To: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org To: Ian Pilcher Cc: paulepanter@users.sourceforge.net, dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org 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 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 >