Re: [PATCH] ia64 kernel fails to link because of PCI MSI quirk

2005-03-15 Thread Andrew Morton
James Bottomley <[EMAIL PROTECTED]> wrote: > > The problem is that the MSI code has an unconditional dependency on > pci_msi_quirk. However, the quirk and the variable are only defined if > CONFIG_X86_IO_APIC is defined, which it never is on ia64. Yes, I hit that as well. > The solution is

[PATCH] ia64 kernel fails to link because of PCI MSI quirk

2005-03-15 Thread James Bottomley
The problem is that the MSI code has an unconditional dependency on pci_msi_quirk. However, the quirk and the variable are only defined if CONFIG_X86_IO_APIC is defined, which it never is on ia64. The solution is to make the variable global and unconditional. James = drivers/pci/quirks.c

[PATCH] ia64 kernel fails to link because of PCI MSI quirk

2005-03-15 Thread James Bottomley
The problem is that the MSI code has an unconditional dependency on pci_msi_quirk. However, the quirk and the variable are only defined if CONFIG_X86_IO_APIC is defined, which it never is on ia64. The solution is to make the variable global and unconditional. James = drivers/pci/quirks.c

Re: [PATCH] ia64 kernel fails to link because of PCI MSI quirk

2005-03-15 Thread Andrew Morton
James Bottomley [EMAIL PROTECTED] wrote: The problem is that the MSI code has an unconditional dependency on pci_msi_quirk. However, the quirk and the variable are only defined if CONFIG_X86_IO_APIC is defined, which it never is on ia64. Yes, I hit that as well. The solution is to make