1. 03 10月, 2006 3 次提交
  2. 28 9月, 2006 1 次提交
  3. 27 9月, 2006 7 次提交
  4. 26 9月, 2006 2 次提交
  5. 24 9月, 2006 2 次提交
  6. 23 9月, 2006 1 次提交
  7. 02 9月, 2006 1 次提交
  8. 31 8月, 2006 1 次提交
  9. 28 8月, 2006 2 次提交
  10. 22 8月, 2006 3 次提交
  11. 15 8月, 2006 1 次提交
  12. 06 8月, 2006 3 次提交
  13. 01 8月, 2006 7 次提交
    • G
      [PATCH] rivafb/nvidiafb: race between register_framebuffer and *_bl_init · ce38cac4
      Guido Guenther 提交于
      Since we now use the generic backlight infrastructure, I think we need to
      call rivafb_bl_init before calling register_framebuffer since otherwise
      rivafb_bl_init might race with the framebuffer layer already opening the
      device and setting up the video mode.  In this case we might end up with a
      not yet fully intialized backlight (info->bl_dev still NULL) when calling
      riva_bl_set_power via rivafb_set_par/rivafb_load_video_mode and the kernel
      dies without any further notice during boot.
      
      This fixes booting current git on a PB 6,1.  In this case radeonfb/atyfb
      would be affected too - I can fix that too but don't have any hardware to
      test this on.
      
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      ce38cac4
    • A
      [PATCH] nvidiafb: remove redundant CONFIG_PCI check · b1367d2a
      Arthur Othieno 提交于
      CONFIG_FB_NVIDIA already depends on CONFIG_PCI in drivers/video/Kconfig.
      Driver does an extra ``sanity check'' which is then redundant.
      Signed-off-by: NArthur Othieno <apgo@patchbomb.org>
      Cc: Antonino Daplas <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      b1367d2a
    • M
      [PATCH] powermac: More powermac backlight fixes · 4b755999
      Michael Hanselmann 提交于
      This patch fixes several problems:
      - The legacy backlight value might be set at interrupt time. Introduced
        a worker to prevent it from directly calling the backlight code.
      - via-pmu allows the backlight to be grabbed, in which case we need to
        prevent other kernel code from changing the brightness.
      - Don't send PMU requests in via-pmu-backlight when the machine is about
        to sleep or waking up.
      - More Kconfig fixes.
      Signed-off-by: NMichael Hanselmann <linux-kernel@hansmi.ch>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4b755999
    • V
      [PATCH] radeonfb sleep fixes · 994aad25
      Volker Braun 提交于
      Many IBM Thinkpad T4* models and some R* and X* with radeon video cards draw
      too much power when suspended to RAM, reducing drastically the battery
      lifetime.  The solution is to enable suspend-to-D2 on these machines.  They
      are whitelisted through their subsystem vendor/device ID.  This fixes
      http://bugzilla.kernel.org/show_bug.cgi?id=3022
      
      The patch introduces a framework to alter the pm_mode and reinit_func fields
      of the radeonfb_info structure based on a whitelist.  This should facilitate
      future hardware-dependent workarounds.  The workaround for the Samsung P35
      that is already in the radeonfb code has been rewritten using this framework.
      
      The behavior can be overridden with module options:
      
      i)  video=radeonfb:force_sleep=1
          enable suspend-to-D2 also on non-whitelisted machines (useful for
          testing new notebook models),
      
      ii) video=radeonfb:ignore_devlist=1
          Disable checking the whitelist and do not apply any workarounds.
      
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      994aad25
    • A
      [PATCH] fbdev: statically link the framebuffer notification functions · 256154fb
      Antonino A. Daplas 提交于
      The backlight and lcd subsystems can be notified by the framebuffer layer
      of blanking events.  However, these subsystems, as a whole, can function
      independently from the framebuffer layer.  But in order to enable to the
      lcd and backlight subsystems, the framebuffer has to be compiled also,
      effectively sucking in a huge amount of unneeded code.
      
      To prevent dependency problems, separate out the framebuffer notification
      mechanism from the framebuffer layer and permanently link it to the kernel.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      256154fb
    • O
      [PATCH] hide onboard graphics drivers on G5 · a04b61d3
      Olaf Hering 提交于
      Hide the video drivers for onboard graphics found in early PCI PowerMacs in
      Apple G5 config files.
      
      drivers/built-in.o: In function `.platinumfb_probe':
      platinumfb.c:(.text+0x377a0): undefined reference to `.nvram_read_byte'
      platinumfb.c:(.text+0x37830): undefined reference to `.nvram_read_byte'
      drivers/built-in.o: In function `.control_init':
      controlfb.c:(.init.text+0x1938): undefined reference to `.nvram_read_byte'
      controlfb.c:(.init.text+0x1968): undefined reference to `.nvram_read_byte'
      drivers/built-in.o: In function `.valkyriefb_init':
      (.init.text+0x2300): undefined reference to `.nvram_read_byte'
      drivers/built-in.o:(.init.text+0x239c): more undefined references to `.nvram_read_byte' follow
      Signed-off-by: NOlaf Hering <olh@suse.de>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      a04b61d3
    • F
      [PATCH] mdacon: fix __init section warnings · 7ca7b5c4
      Frederik Deweerdt 提交于
      WARNING: drivers/video/console/mdacon.o - Section mismatch: reference to .init.text: from .text between 'mdacon_startup' (at offset 0x123) and 'mdacon_init'
      WARNING: drivers/video/console/mdacon.o - Section mismatch: reference to .init.text: from .text between 'mdacon_startup' (at offset 0x18b) and 'mdacon_init'
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      7ca7b5c4
  14. 31 7月, 2006 1 次提交
  15. 25 7月, 2006 1 次提交
  16. 15 7月, 2006 1 次提交
  17. 11 7月, 2006 3 次提交