“3026a6b74a9d71bf5c617195a6a28765ff641189”上不存在“doc/v2/design/cluster_train/data_dispatch.md”
  1. 14 11月, 2005 2 次提交
    • A
      [PATCH] pciehp_hpc build fix · 5d1b8c9e
      Andrew Morton 提交于
      drivers/pci/hotplug/pciehp_hpc.c:221: parse error before "pcie_isr"
      drivers/pci/hotplug/pciehp_hpc.c:221: warning: type defaults to `int' in declaration of `pcie_isr'
      drivers/pci/hotplug/pciehp_hpc.c:221: warning: data definition has no type or storage class
      drivers/pci/hotplug/pciehp_hpc.c: In function `hpc_release_ctlr':
      drivers/pci/hotplug/pciehp_hpc.c:715: implicit declaration of function `free_irq'
      drivers/pci/hotplug/pciehp_hpc.c: At top level:
      drivers/pci/hotplug/pciehp_hpc.c:839: parse error before "pcie_isr"
      drivers/pci/hotplug/pciehp_hpc.c:840: warning: return type defaults to `int'
      drivers/pci/hotplug/pciehp_hpc.c: In function `pcie_isr':
      drivers/pci/hotplug/pciehp_hpc.c:850: `IRQ_NONE' undeclared (first use in this function)
      drivers/pci/hotplug/pciehp_hpc.c:850: (Each undeclared identifier is reported only once
      drivers/pci/hotplug/pciehp_hpc.c:850: for each function it appears in.)
      drivers/pci/hotplug/pciehp_hpc.c:979: `IRQ_HANDLED' undeclared (first use in this function)
      drivers/pci/hotplug/pciehp_hpc.c: In function `pcie_init':
      drivers/pci/hotplug/pciehp_hpc.c:1362: implicit declaration of function `request_irq'
      
      Cc: Greg KH <greg@kroah.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      5d1b8c9e
    • A
      [PATCH] rpaphp_pci build fix · 89a071b8
      akpm@osdl.org 提交于
      (akpm: _machine is some ppc64 thing - this is a powerpc-only driver)
      Signed-off-by: NSerge Hallyn <serue@us.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      89a071b8
  2. 11 11月, 2005 11 次提交
  3. 10 11月, 2005 1 次提交
  4. 07 11月, 2005 2 次提交
  5. 31 10月, 2005 3 次提交
  6. 29 10月, 2005 13 次提交
  7. 22 9月, 2005 2 次提交
  8. 18 9月, 2005 3 次提交
  9. 10 9月, 2005 1 次提交
    • R
      [PATCH] PCI: Fix PCI bus mastering enable problem in pciehp · 7c56075e
      Rajesh Shah 提交于
      Martin Franc reported that the pciehp driver was not enabling bus
      master capability on his hot-plugged card. pciehprm_enable_card()
      was updating the PCI command register only if _HPP indicated a
      value for SERR or PERR that was different from the current setting.
      I don't have hardware that reproduces this problem, but Martin
      reports that this patch fixes the problem for him.
      Signed-off-by: NRajesh Shah <rajesh.shah@intel.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      From rzarev@its.caltech.edu Tue Sep  6 18:29:50 2005
      Date: Tue, 6 Sep 2005 13:39:32 -0700 (PDT)
      From: Rumen Ivanov Zarev <rzarev@its.caltech.edu>
      Message-Id: <200509062039.j86KdWMr014934@inky.its.caltech.edu>
      To: gregkh@suse.de
      Subject: PCI: Unhide SMBus on Compaq Evo N620c
      Cc: linux-kernel@vger.kernel.org
      
      Trivial patch against 2.6.13 to unhide SMBus on Compaq Evo N620c laptop using
      Intel 82855PM chipset.
      Signed-off-by: NRumen Zarev <rzarev@caltech.edu>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      
      ---
       drivers/pci/quirks.c |    6 ++++++
       1 file changed, 6 insertions(+)
      
      --- gregkh-2.6.orig/drivers/pci/quirks.c	2005-09-09 10:28:55.000000000 -0700
      +++ gregkh-2.6/drivers/pci/quirks.c	2005-09-09 13:51:44.000000000 -0700
      @@ -876,6 +876,12 @@ static void __init asus_hides_smbus_host
                              case 0xC00C: /* Samsung P35 notebook */
                                      asus_hides_smbus = 1;
                              }
      +	} else if (unlikely(dev->subsystem_vendor == PCI_VENDOR_ID_COMPAQ)) {
      +		if (dev->device == PCI_DEVICE_ID_INTEL_82855PM_HB)
      +			switch(dev->subsystem_device) {
      +			case 0x0058: /* Compaq Evo N620c */
      +				asus_hides_smbus = 1;
      +			}
       	}
       }
       DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL,	PCI_DEVICE_ID_INTEL_82845_HB,	asus_hides_smbus_hostbridge );
      7c56075e
  10. 09 9月, 2005 2 次提交