1. 30 10月, 2005 37 次提交
  2. 29 10月, 2005 3 次提交
    • T
      [IA64] fix warning unused variable `g' · 0e1f6060
      Tony Luck 提交于
      4ac0068f forgot to delete
      the declaration of this variable which is no longer used.
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      0e1f6060
    • J
      [PATCH] PCI fixup for Toshiba laptops and ohci1394 · f8977d0a
      Jesse Barnes 提交于
      This is a fix for a bug I see on my Toshiba laptop, where the ohci1394
      controller gets initialized improperly.  The patch adds two PCI fixups
      to arch/i386/pci/fixup.c, one that happens early on to cache the value
      of the PCI_CACHE_LINE_SIZE config register, and another that later
      restores the value, along with a valid IRQ number and some BAR values.
      I've tested it on my laptop, and it prevents me from running into what I
      consider to be a major bug: IRQ 11 is disabled by the IRQ debug code,
      causing my wireless to break.
      
      Thanks to Rob for the original patch to ohci1394.c and Stefan for lots
      of proofreading (and a last minute bug caught in review!) and additional
      information collection.  I think the DMI system list is correct, but we
      may need to add some more PCI IDs to the PCI_FIXUP macros over time.
      Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      f8977d0a
    • R
      [PATCH] DRIVER MODEL: Get rid of the obsolete tri-level suspend/resume callbacks · 9480e307
      Russell King 提交于
      In PM v1, all devices were called at SUSPEND_DISABLE level.  Then
      all devices were called at SUSPEND_SAVE_STATE level, and finally
      SUSPEND_POWER_DOWN level.  However, with PM v2, to maintain
      compatibility for platform devices, I arranged for the PM v2
      suspend/resume callbacks to call the old PM v1 suspend/resume
      callbacks three times with each level in order so that existing
      drivers continued to work.
      
      Since this is obsolete infrastructure which is no longer necessary,
      we can remove it.  Here's an (untested) patch to do exactly that.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      9480e307