mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] CPP ## string concatination is for the token
@ 2001-01-13  5:38 NIIBE Yutaka
  0 siblings, 0 replies; only message in thread
From: NIIBE Yutaka @ 2001-01-13  5:38 UTC (permalink / raw)
  To: linux-kernel

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 majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-01-13  5:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-01-13  5:38 [PATCH] CPP ## string concatination is for the token NIIBE Yutaka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®