1. 17 10月, 2007 6 次提交
  2. 31 8月, 2007 1 次提交
  3. 27 8月, 2007 2 次提交
  4. 23 8月, 2007 1 次提交
  5. 12 8月, 2007 1 次提交
  6. 01 8月, 2007 1 次提交
  7. 22 7月, 2007 1 次提交
  8. 18 7月, 2007 7 次提交
  9. 12 7月, 2007 1 次提交
  10. 05 6月, 2007 1 次提交
    • S
      [VIDEO]: Fix section mismatch warning in promcon. · 353076fe
      Sam Ravnborg 提交于
      Fix the following warnings in promcon:
      WARNING: o-sparc64/drivers/video/console/built-in.o(.text+0x480): Section mismatch: reference to .init.data:promfont_unitable (between 'promcon_init_unimap' and 'promcon_init')
      WARNING: o-sparc64/drivers/video/console/built-in.o(.text+0x488): Section mismatch: reference to .init.data:promfont_unitable (between 'promcon_init_unimap' and 'promcon_init')
      WARNING: o-sparc64/drivers/video/console/built-in.o(.text+0x48c): Section mismatch: reference to .init.data:promfont_unicount (between 'promcon_init_unimap' and 'promcon_init')
      WARNING: o-sparc64/drivers/video/console/built-in.o(.text+0x490): Section mismatch: reference to .init.data:promfont_unicount (between 'promcon_init_unimap' and 'promcon_init')
      
      The warnings happens because the function: promcon_init_unimap()
      references promfont_unitable and promfont_unicount which are marked
      __initdata by the conmakehash command in the drivers/video/console/Makefile
      
      Fix the warning by removing the __initdata marker on the two variables.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      353076fe
  11. 01 6月, 2007 1 次提交
  12. 28 5月, 2007 1 次提交
    • H
      [PARISC] fix section mismatch in parisc STI video drivers · 48a7d5c6
      Helge Deller 提交于
      Hi Kyle,
      
      this patch fixes various section mismatches in the sti graphics driver:
      WARNING: drivers/built-in.o(.text.sticore_pci_init+0xac): Section mismatch: reference to .init.text:sti_try_rom_generic (after 'sticore_pci_init')
      WARNING: drivers/built-in.o(.text.sticore_pci_init+0xe4): Section mismatch: reference to .init.text:sticore_check_for_default_sti (after 'sticore_pci_init')
      WARNING: drivers/built-in.o(.text.sti_get_rom+0x18): Section mismatch: reference to .init.text:sti_init_roms (after 'sti_get_rom')
      (and others).
      
      Basically it's a replacement of __init by __devinit.
      Please apply, Helge
      Signed-off-by: NHelge Deller <deller@gmx.de>
      Signed-off-by: NKyle McMartin <kyle@parisc-linux.org>
      48a7d5c6
  13. 17 5月, 2007 1 次提交
  14. 11 5月, 2007 1 次提交
  15. 09 5月, 2007 12 次提交
  16. 03 5月, 2007 1 次提交
  17. 20 2月, 2007 1 次提交
    • R
      backlight/fbcon: Add FB_EVENT_CONBLANK · 994efacd
      Richard Purdie 提交于
      The backlight class wants notification whenever the console is blanked
      but doesn't get this when hardware blanking fails and software blanking
      is used. Changing FB_EVENT_BLANK to report both would be a behaviour
      change which could confuse the console layer so add a new event for
      software blanking and have the backlight class listen for both.
      Signed-off-by: NRichard Purdie <rpurdie@rpsys.net>
      994efacd