diff options
author | Greg KH <gregkh@suse.de> | 2008-07-03 12:49:39 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-07-07 19:02:40 -0400 |
commit | c6c4f070a61b2b6e5cd317a5fbf25255878688a2 (patch) | |
tree | 7831df47d77b4307c91ab0ef8edfd2615271e7d5 /include/linux/pci.h | |
parent | eebfcfb52ce753eaaa8525078bda6b539586066c (diff) |
PCI: make pci_name use dev_name
Also fixes up the sparc code that was assuming this is not a constant.
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 96ebaa8d80e3..4c80dc3f2990 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -996,9 +996,9 @@ static inline void pci_set_drvdata(struct pci_dev *pdev, void *data) | |||
996 | /* If you want to know what to call your pci_dev, ask this function. | 996 | /* If you want to know what to call your pci_dev, ask this function. |
997 | * Again, it's a wrapper around the generic device. | 997 | * Again, it's a wrapper around the generic device. |
998 | */ | 998 | */ |
999 | static inline char *pci_name(struct pci_dev *pdev) | 999 | static inline const char *pci_name(struct pci_dev *pdev) |
1000 | { | 1000 | { |
1001 | return pdev->dev.bus_id; | 1001 | return dev_name(&pdev->dev); |
1002 | } | 1002 | } |
1003 | 1003 | ||
1004 | 1004 | ||