* Patch "drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S" has been added to the 3.4-stable tree
@ 2013-01-15 13:50 gregkh
2013-01-15 14:31 ` Ilija Hadzic
0 siblings, 1 reply; 4+ messages in thread
From: gregkh @ 2013-01-15 13:50 UTC (permalink / raw)
To: paulepanter, airlied, ajax, arequipeno, dri-devel, gregkh,
jcristau
Cc: stable, stable-commits
This is a note to let you know that I've just added the patch titled
drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S
to the 3.4-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
0014-drm-Add-EDID_QUIRK_FORCE_REDUCED_BLANKING-for-ASUS-V.patch
and it can be found in the queue-3.4 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
>From 31d04b5fa45264da10750fc7f526d0e65f894a29 Mon Sep 17 00:00:00 2001
From: Paul Menzel <paulepanter@users.sourceforge.net>
Date: Wed, 8 Aug 2012 23:12:19 +0200
Subject: drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S
From: Paul Menzel <paulepanter@users.sourceforge.net>
commit 6f33814bd4d9cfe76033a31b1c0c76c960cd8e4b upstream.
Connecting an ASUS VW222S [1] over VGA a garbled screen is shown with
vertical stripes in the top half.
In commit bc42aabc [2]
commit bc42aabc6a01b92b0f961d65671564e0e1cd7592
Author: Adam Jackson <ajax@redhat.com>
Date: Wed May 23 16:26:54 2012 -0400
drm/edid/quirks: ViewSonic VA2026w
Adam Jackson added the quirk `EDID_QUIRK_FORCE_REDUCED_BLANKING` which
is also needed for this ASUS monitor.
All log files and output from `xrandr` is included in the referenced
Bugzilla report #17629.
Please note that this monitor only has a VGA (D-Sub) connector [1].
[1] http://www.asus.com/Display/LCD_Monitors/VW222S/
[2] http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=bc42aabc6a01b92b0f961d65671564e0e1cd7592
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=17629
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Cc: <dri-devel@lists.freedesktop.org>
Cc: Adam Jackson <ajax@redhat.com>
Cc: Ian Pilcher <arequipeno@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Julien Cristau <jcristau@debian.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/gpu/drm/drm_edid.c | 3 +++
1 file changed, 3 insertions(+)
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -87,6 +87,9 @@ static struct edid_quirk {
int product_id;
u32 quirks;
} edid_quirk_list[] = {
+ /* ASUS VW222S */
+ { "ACI", 0x22a2, EDID_QUIRK_FORCE_REDUCED_BLANKING },
+
/* Acer AL1706 */
{ "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
/* Acer F51 */
Patches currently in stable-queue which might be from paulepanter@users.sourceforge.net are
queue-3.4/0014-drm-Add-EDID_QUIRK_FORCE_REDUCED_BLANKING-for-ASUS-V.patch
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: Patch "drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S" has been added to the 3.4-stable tree
2013-01-15 13:50 Patch "drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S" has been added to the 3.4-stable tree gregkh
@ 2013-01-15 14:31 ` Ilija Hadzic
2013-01-15 15:23 ` Daniel Vetter
0 siblings, 1 reply; 4+ messages in thread
From: Ilija Hadzic @ 2013-01-15 14:31 UTC (permalink / raw)
To: gregkh
Cc: arequipeno, stable-commits, dri-devel, stable, jcristau, airlied,
paulepanter
I thought I saw a revert for that patch on the mailing list yesterday:
http://lists.freedesktop.org/archives/dri-devel/2013-January/033322.html
On Tue, 15 Jan 2013, gregkh@linuxfoundation.org wrote:
>
> This is a note to let you know that I've just added the patch titled
>
> drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S
>
> to the 3.4-stable tree which can be found at:
> http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
>
> The filename of the patch is:
> 0014-drm-Add-EDID_QUIRK_FORCE_REDUCED_BLANKING-for-ASUS-V.patch
> and it can be found in the queue-3.4 subdirectory.
>
> If you, or anyone else, feels it should not be added to the stable tree,
> please let <stable@vger.kernel.org> know about it.
>
>
>> From 31d04b5fa45264da10750fc7f526d0e65f894a29 Mon Sep 17 00:00:00 2001
> From: Paul Menzel <paulepanter@users.sourceforge.net>
> Date: Wed, 8 Aug 2012 23:12:19 +0200
> Subject: drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S
>
> From: Paul Menzel <paulepanter@users.sourceforge.net>
>
> commit 6f33814bd4d9cfe76033a31b1c0c76c960cd8e4b upstream.
>
> Connecting an ASUS VW222S [1] over VGA a garbled screen is shown with
> vertical stripes in the top half.
>
> In commit bc42aabc [2]
>
> commit bc42aabc6a01b92b0f961d65671564e0e1cd7592
> Author: Adam Jackson <ajax@redhat.com>
> Date: Wed May 23 16:26:54 2012 -0400
>
> drm/edid/quirks: ViewSonic VA2026w
>
> Adam Jackson added the quirk `EDID_QUIRK_FORCE_REDUCED_BLANKING` which
> is also needed for this ASUS monitor.
>
> All log files and output from `xrandr` is included in the referenced
> Bugzilla report #17629.
>
> Please note that this monitor only has a VGA (D-Sub) connector [1].
>
> [1] http://www.asus.com/Display/LCD_Monitors/VW222S/
> [2] http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=bc42aabc6a01b92b0f961d65671564e0e1cd7592
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=17629
> Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
> Cc: <dri-devel@lists.freedesktop.org>
> Cc: Adam Jackson <ajax@redhat.com>
> Cc: Ian Pilcher <arequipeno@gmail.com>
> Signed-off-by: Dave Airlie <airlied@redhat.com>
> Signed-off-by: Julien Cristau <jcristau@debian.org>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
> drivers/gpu/drm/drm_edid.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> --- a/drivers/gpu/drm/drm_edid.c
> +++ b/drivers/gpu/drm/drm_edid.c
> @@ -87,6 +87,9 @@ static struct edid_quirk {
> int product_id;
> u32 quirks;
> } edid_quirk_list[] = {
> + /* ASUS VW222S */
> + { "ACI", 0x22a2, EDID_QUIRK_FORCE_REDUCED_BLANKING },
> +
> /* Acer AL1706 */
> { "ACR", 44358, EDID_QUIRK_PREFER_LARGE_60 },
> /* Acer F51 */
>
>
> Patches currently in stable-queue which might be from paulepanter@users.sourceforge.net are
>
> queue-3.4/0014-drm-Add-EDID_QUIRK_FORCE_REDUCED_BLANKING-for-ASUS-V.patch
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: Patch "drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S" has been added to the 3.4-stable tree
2013-01-15 14:31 ` Ilija Hadzic
@ 2013-01-15 15:23 ` Daniel Vetter
2013-01-15 17:52 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Daniel Vetter @ 2013-01-15 15:23 UTC (permalink / raw)
To: Ilija Hadzic
Cc: gregkh, arequipeno, stable-commits, dri-devel, stable, jcristau,
airlied, paulepanter
On Tue, Jan 15, 2013 at 3:31 PM, Ilija Hadzic
<ihadzic@research.bell-labs.com> wrote:
> I thought I saw a revert for that patch on the mailing list yesterday:
>
> http://lists.freedesktop.org/archives/dri-devel/2013-January/033322.html
Yeah, patch is bogus and the revert is already acked by the original author.
-Daniel
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Patch "drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S" has been added to the 3.4-stable tree
2013-01-15 15:23 ` Daniel Vetter
@ 2013-01-15 17:52 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2013-01-15 17:52 UTC (permalink / raw)
To: Daniel Vetter
Cc: Ilija Hadzic, arequipeno, stable-commits, dri-devel, stable,
jcristau, airlied, paulepanter
On Tue, Jan 15, 2013 at 04:23:41PM +0100, Daniel Vetter wrote:
> On Tue, Jan 15, 2013 at 3:31 PM, Ilija Hadzic
> <ihadzic@research.bell-labs.com> wrote:
> > I thought I saw a revert for that patch on the mailing list yesterday:
> >
> > http://lists.freedesktop.org/archives/dri-devel/2013-January/033322.html
>
> Yeah, patch is bogus and the revert is already acked by the original author.
Thanks for letting me know, now dropped from the 3.4-stable queue.
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-15 17:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-15 13:50 Patch "drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S" has been added to the 3.4-stable tree gregkh
2013-01-15 14:31 ` Ilija Hadzic
2013-01-15 15:23 ` Daniel Vetter
2013-01-15 17:52 ` Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.