All of lore.kernel.org
 help / color / mirror / Atom feed
* drivers/video/output.c
@ 2007-04-17 21:37 Dave Jones
  2007-04-17 23:43 ` drivers/video/output.c Antonino A. Daplas
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Dave Jones @ 2007-04-17 21:37 UTC (permalink / raw)
  To: Linux Kernel; +Cc: luming.yu, adaplas, greg, len.brown

commit 2dec3ba8d872aa3ffbcdb8f6f8a2c0bcd44e9910 puzzles me.

git-bisect just fingered it as responsible for my "backlight doesn't turn on"
suspend/resume regression on the Thinkpad X60.  I think it's lying.

Why?  Because afaict, drivers/video/output.c is never compiled.
That commit adds the driver, but doesn't touch any Makefile, and I
don't see anything obvious in the follow-in commits that would 'enable' it.

Asides from git-bisect failing me again[1], what gives with this file?

	Dave

[1] bisecting suspend regressions _really_ sucks.  Each time I've tried this
I've found 2-3 different ways we regressed along the bisection, making it
hard to say "good" or "bad" when the answer is "bad, but broken differently"

-- 
http://www.codemonkey.org.uk

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: drivers/video/output.c
  2007-04-17 21:37 drivers/video/output.c Dave Jones
@ 2007-04-17 23:43 ` Antonino A. Daplas
  2007-04-18  3:38 ` drivers/video/output.c Brown, Len
  2007-04-18  7:10 ` drivers/video/output.c Geert Uytterhoeven
  2 siblings, 0 replies; 5+ messages in thread
From: Antonino A. Daplas @ 2007-04-17 23:43 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel, luming.yu, greg, len.brown

On Tue, 2007-04-17 at 17:37 -0400, Dave Jones wrote:
> commit 2dec3ba8d872aa3ffbcdb8f6f8a2c0bcd44e9910 puzzles me.
> 
> git-bisect just fingered it as responsible for my "backlight doesn't turn on"
> suspend/resume regression on the Thinkpad X60.  I think it's lying.
> 
> Why?  Because afaict, drivers/video/output.c is never compiled.
> That commit adds the driver, but doesn't touch any Makefile, and I
> don't see anything obvious in the follow-in commits that would 'enable' it.
> 
> Asides from git-bisect failing me again[1], what gives with this file?

Correct, it's basically dead code. Even if you compile it, but without
any users, it shouldn't do anything.

BTW, it's completely independent from framebuffer and backlight and I
doubt the commit is the cause of your problem.  

Tony




^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: drivers/video/output.c
  2007-04-17 21:37 drivers/video/output.c Dave Jones
  2007-04-17 23:43 ` drivers/video/output.c Antonino A. Daplas
@ 2007-04-18  3:38 ` Brown, Len
  2007-04-25 14:17   ` drivers/video/output.c Luming Yu
  2007-04-18  7:10 ` drivers/video/output.c Geert Uytterhoeven
  2 siblings, 1 reply; 5+ messages in thread
From: Brown, Len @ 2007-04-18  3:38 UTC (permalink / raw)
  To: Dave Jones, Linux Kernel; +Cc: Yu, Luming, adaplas, greg

>Asides from git-bisect failing me again[1], what gives with this file?

it supports output switching, which didn't make it into 2.6.21 --
probably will be 2.6.22.

-Len

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: drivers/video/output.c
  2007-04-17 21:37 drivers/video/output.c Dave Jones
  2007-04-17 23:43 ` drivers/video/output.c Antonino A. Daplas
  2007-04-18  3:38 ` drivers/video/output.c Brown, Len
@ 2007-04-18  7:10 ` Geert Uytterhoeven
  2 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2007-04-18  7:10 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel

On Tue, 17 Apr 2007, Dave Jones wrote:
> git-bisect just fingered it as responsible for my "backlight doesn't turn on"
> suspend/resume regression on the Thinkpad X60.  I think it's lying.

Actually I've seeing git bisect lying on me, too. I retried a few times
(fortunately it didn't require rebooting, as the problem was just a compile
error) to make sure I made no mistakes in answering, but I always ended up
with the wrong commit.

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: drivers/video/output.c
  2007-04-18  3:38 ` drivers/video/output.c Brown, Len
@ 2007-04-25 14:17   ` Luming Yu
  0 siblings, 0 replies; 5+ messages in thread
From: Luming Yu @ 2007-04-25 14:17 UTC (permalink / raw)
  To: Brown, Len; +Cc: Dave Jones, Linux Kernel, Yu, Luming, adaplas, greg

The user of output sysfs class is coming..
Please check out the acpi video_output patch I just sent to acpi mailing list.
I can't post link here, just because It is not in archive of the ml yet..

On 4/18/07, Brown, Len <len.brown@intel.com> wrote:
> >Asides from git-bisect failing me again[1], what gives with this file?
>
> it supports output switching, which didn't make it into 2.6.21 --
> probably will be 2.6.22.
>
> -Len
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-04-25 14:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-17 21:37 drivers/video/output.c Dave Jones
2007-04-17 23:43 ` drivers/video/output.c Antonino A. Daplas
2007-04-18  3:38 ` drivers/video/output.c Brown, Len
2007-04-25 14:17   ` drivers/video/output.c Luming Yu
2007-04-18  7:10 ` drivers/video/output.c Geert Uytterhoeven

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.