1. 02 7月, 2007 4 次提交
    • R
      scsi disk help file is not complete · abcdceb9
      Randy Dunlap 提交于
      On Mon, 11 Jun 2007 20:28:16 +0200 api wrote:
      
      > Good day,
      > When doing make menuconfig one comes across CONFIG_BLK_DEV_SD.
      > The help file states that this is for scsi disks.NO MENTION IS MADE THAT
      > IT IS NEEDE FOR SATA DISKS AS WELL!
      > Would have saved me a lot of time if the help was up to date.
      > I hope this can be changed so others can make a kernel for sata systems
      > quicker.
      
      From: Randy Dunlap <randy.dunlap@oracle.com>
      
      Add help info for BLK_DEV_SD referring to its use in
      SATA or PATA driver configurations.
      
      Add help text for "ATA" indicating that it probably needs
      some SCSI config symbols enabled in order to be useful.
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      abcdceb9
    • B
      smsc-ircc2: bypass PNP detection until we get the quirks worked out · cbcdd772
      Bjorn Helgaas 提交于
      Don't use PNP detection by default yet.  We have some PNP and BIOS issues
      to work out first.
      
      Sample problem on a Toshiba Portege 4000: the SMCf010 device is handed off
      disabled.  We assign I/O ports originally assigned to the SMCf010 to a
      PCMCIA device instead.  We enable the SMCf010, configuring it to use
      disjoint ports, but _SRS doesn't work correctly, so the device doesn't
      work.
      Signed-off-by: NBjorn Helgaas <bjorn.helgaas@hp.com>
      Cc: Andrey Borzenkov <arvidjaar@mail.ru>
      Cc: Adam Belay <ambx1@neo.rr.com>
      Cc: Michal Piotrowski <michal.k.k.piotrowski@gmail.com>
      Cc: Samuel Ortiz <samuel@sortiz.org>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jeff Garzik <jeff@garzik.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      cbcdd772
    • M
      asus_acpi: fix oops on non-asus machines · 5ebffd7c
      Maxime Austruy 提交于
      If asus_acpi_init doesn't find any device it knows about, it mistakenly
      returns a "success" error code even though it cleans up after itself.  Later
      when trying to rmmod asus_acpi, the module_exit routine would try to clean up
      one more time and we would end up calling
      acpi_bus_unregister_driver(&asus_hotk_driver) twice.  This patch addresses
      this first problem by returning -ENODEV when no appropriate device is found.
      
      Then there was also another bug with the code handling the return value of
      backlight_device_register.  If this function ever failed, the driver would
      cleanup by calling the module_exit routine from module_init, but it would
      still return "success".  So any attempt to rmmod this module would result in
      asus_acpi_exit being called twice but it's not ready to handle it (I haven't
      hit this bug, just found it by code inspection).  This patch fixes that by
      inserting a return -ENODEV; at the end of this error handling path.
      Signed-off-by: NMaxime Austruy <maxime@tralhalla.org>
      Cc: Len Brown <lenb@kernel.org>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Cc: Jan Engelhardt <jengelh@computergmbh.de>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      5ebffd7c
    • S
      blink driver power saving · 0f4915b9
      Stephen Hemminger 提交于
      The blink driver wakes up every jiffies which wastes power unnecessarily.
      Using a notifier gives same effect. Also add ability to unload module.
      Signed-off-by: NStephen Hemminger <shemminger@linux-foundation.org>
      [ We should really just delete the whole thing. The blink driver is
        broken in many other ways too  -Linus ]
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      0f4915b9
  2. 29 6月, 2007 11 次提交
  3. 28 6月, 2007 1 次提交
  4. 27 6月, 2007 13 次提交
  5. 26 6月, 2007 7 次提交
  6. 24 6月, 2007 4 次提交