I think that `##' operator for string concatination produces the token. In pci.h, we have bogus `##' operator which doesn't produce valid token. We don't need (must not) have ## between `s' and the open paren. Here's the patch. diff -ruN v2.4.1-pre3/include/linux/pci.h linux/include/linux/pci.h --- v2.4.1-pre3/include/linux/pci.h Fri Jan 5 07:51:32 2001 +++ linux/include/linux/pci.h Mon Jan 8 17:36:44 2001 @@ -565,9 +565,9 @@ { return PCIBIOS_DEVICE_NOT_FOUND; } #define _PCI_NOP(o,s,t) \ - static inline int pcibios_##o##_config_##s## (u8 bus, u8 dfn, u8 where, t val) \ + static inline int pcibios_##o##_config_##s (u8 bus, u8 dfn, u8 where, t val) \ { return PCIBIOS_FUNC_NOT_SUPPORTED; } \ - static inline int pci_##o##_config_##s## (struct pci_dev *dev, int where, t val) \ + static inline int pci_##o##_config_##s (struct pci_dev *dev, int where, t val) +\ { return PCIBIOS_FUNC_NOT_SUPPORTED; } #define _PCI_NOP_ALL(o,x) _PCI_NOP(o,byte,u8 x) \ _PCI_NOP(o,word,u16 x) \ -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/