diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-12-29 19:47:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-30 13:55:55 -0500 |
commit | 76e6a1d6607e5b58003bb87e3b3220d5fdb7568d (patch) | |
tree | 164331d166fabe44f3e25bed11ff802a7d25d624 /drivers | |
parent | 29263fbf9ecfcf294efdd8a51aa9191f423515ed (diff) |
[PATCH] pci/probe: fix macro that confuses kernel-doc
Don't have macros between a function's kernel-doc block and the function
definition. This is not valid for kernel-doc.
Warning(/var/linsrc/linux-2.6.20-rc1-git8//drivers/pci/probe.c:653): No description found for parameter 'IORESOURCE_PCI_FIXED'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/probe.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 1ae9c3f50ffa..0e0401dd02cb 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -639,6 +639,8 @@ static void pci_read_irq(struct pci_dev *dev) | |||
639 | dev->irq = irq; | 639 | dev->irq = irq; |
640 | } | 640 | } |
641 | 641 | ||
642 | #define LEGACY_IO_RESOURCE (IORESOURCE_IO | IORESOURCE_PCI_FIXED) | ||
643 | |||
642 | /** | 644 | /** |
643 | * pci_setup_device - fill in class and map information of a device | 645 | * pci_setup_device - fill in class and map information of a device |
644 | * @dev: the device structure to fill | 646 | * @dev: the device structure to fill |
@@ -649,9 +651,6 @@ static void pci_read_irq(struct pci_dev *dev) | |||
649 | * Returns 0 on success and -1 if unknown type of device (not normal, bridge | 651 | * Returns 0 on success and -1 if unknown type of device (not normal, bridge |
650 | * or CardBus). | 652 | * or CardBus). |
651 | */ | 653 | */ |
652 | |||
653 | #define LEGACY_IO_RESOURCE (IORESOURCE_IO | IORESOURCE_PCI_FIXED) | ||
654 | |||
655 | static int pci_setup_device(struct pci_dev * dev) | 654 | static int pci_setup_device(struct pci_dev * dev) |
656 | { | 655 | { |
657 | u32 class; | 656 | u32 class; |