1. 10 3月, 2007 1 次提交
  2. 07 3月, 2007 3 次提交
  3. 06 3月, 2007 1 次提交
  4. 05 3月, 2007 4 次提交
  5. 03 3月, 2007 1 次提交
    • D
      [RADEON]: Fix blanking return value. · 7ab87670
      David S. Miller 提交于
      If you'll recall, over a year ago, I pointed out that the current
      Radeon driver erroneously returns -EINVAL for valid blanking codes,
      here is a link to that thread:
      
      	http://lkml.org/lkml/2006/1/28/6
      
      No other driver does this, and it confuses the X server into thinking
      that the device does not support blanking properly.
      
      I looked again and there is simply no reason for the Radeon driver to
      return -EINVAL for FB_BLANK_NORMAL.  It claims it wants to do this in
      order to convince fbcon to blank in software, right here:
      
      			if (fb_blank(info, blank))
      				fbcon_generic_blank(vc, info, blank);
      
      to software blank the screen.  But it only causes that to happen
      in the FB_BLANK_NORMAL case.
      
      That makes no sense because the Radeon code does this:
      
      		val |= CRTC_DISPLAY_DIS;
      
      in the FB_BLANK_NORMAL case so should be blanking the hardware, and
      there is therefore no reason to SW blank by returning -EINVAL.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      Acked-by: NAntonino Daplas <adaplas@gmail.com>
      7ab87670
  6. 02 3月, 2007 2 次提交
  7. 27 2月, 2007 1 次提交
    • O
      [PATCH] Fix build-failure in drivers/video/s3fb.c · 62fa4dc7
      Ondrej Zajicek 提交于
      Toralf Förster pointed out that drivers/video/s3fb.c would fail to compile:
      > ...
      >   CC      drivers/video/s3fb.o
      > drivers/video/s3fb.c: In function `s3_pci_remove':
      > drivers/video/s3fb.c:1003: warning: unused variable `par'
      > drivers/video/s3fb.c: In function `s3fb_setup':
      > drivers/video/s3fb.c:1141: error: `mtrr' undeclared (first use in this function)
      > drivers/video/s3fb.c:1141: error: (Each undeclared identifier is reported only once
      > drivers/video/s3fb.c:1141: error: for each function it appears in.)
      > make[2]: *** [drivers/video/s3fb.o] Error 1
      > make[1]: *** [drivers/video] Error 2
      > make: *** [drivers] Error 2
      
      Here is fix, it also fixes broken boot options.
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      62fa4dc7
  8. 21 2月, 2007 2 次提交
  9. 20 2月, 2007 19 次提交
  10. 17 2月, 2007 1 次提交
  11. 15 2月, 2007 2 次提交
    • T
      [PATCH] Scheduled removal of SA_xxx interrupt flags fixups · 38515e90
      Thomas Gleixner 提交于
      The obsolete SA_xxx interrupt flags have been used despite the scheduled
      removal.  Fixup the remaining users.
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Cc: "Luck, Tony" <tony.luck@intel.com>
      Cc: Roman Zippel <zippel@linux-m68k.org>
      Cc: Geert Uytterhoeven <geert@linux-m68k.org>
      Cc: Jeff Garzik <jeff@garzik.org>
      Cc: Wim Van Sebroeck <wim@iguana.be>
      Cc: Roland Dreier <rolandd@cisco.com>
      Cc: Alessandro Zummo <a.zummo@towertech.it>
      Cc: James Bottomley <James.Bottomley@steeleye.com>
      Cc: Greg KH <greg@kroah.com>
      Cc: Dave Airlie <airlied@linux.ie>
      Cc: James Simmons <jsimmons@infradead.org>
      Cc: "Antonino A. Daplas" <adaplas@pol.net>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      38515e90
    • T
      [PATCH] remove many unneeded #includes of sched.h · cd354f1a
      Tim Schmielau 提交于
      After Al Viro (finally) succeeded in removing the sched.h #include in module.h
      recently, it makes sense again to remove other superfluous sched.h includes.
      There are quite a lot of files which include it but don't actually need
      anything defined in there.  Presumably these includes were once needed for
      macros that used to live in sched.h, but moved to other header files in the
      course of cleaning it up.
      
      To ease the pain, this time I did not fiddle with any header files and only
      removed #includes from .c-files, which tend to cause less trouble.
      
      Compile tested against 2.6.20-rc2 and 2.6.20-rc2-mm2 (with offsets) on alpha,
      arm, i386, ia64, mips, powerpc, and x86_64 with allnoconfig, defconfig,
      allmodconfig, and allyesconfig as well as a few randconfigs on x86_64 and all
      configs in arch/arm/configs on arm.  I also checked that no new warnings were
      introduced by the patch (actually, some warnings are removed that were emitted
      by unnecessarily included header files).
      Signed-off-by: NTim Schmielau <tim@physik3.uni-rostock.de>
      Acked-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      cd354f1a
  12. 14 2月, 2007 1 次提交
    • J
      i2c: Declare more i2c_adapter parent devices · 12a917f6
      Jean Delvare 提交于
      Declare the parent device of i2c_adapter devices each time we can
      easily do so. It makes the i2c_adapter appear at the right place in
      the device tree, rather than as a platform device.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      Cc: David Brownell <dbrownell@users.sourceforge.net>
      Cc: Len Brown <len.brown@intel.com>
      Cc: Jordan Crouse <jordan.crouse@amd.com>
      Cc: Jody McIntyre <scjody@modernduck.com>
      Cc: Stefan Richter <stefanr@s5r6.in-berlin.de>
      Cc: v4l-dvb-maintainer@linuxtv.org
      Cc: Petr Vandrovec <vandrove@vc.cvut.cz>
      12a917f6
  13. 13 2月, 2007 2 次提交