summaryrefslogtreecommitdiff
path: root/drivers/pci/pci-driver.c
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@xenotime.net>2005-10-29 03:36:51 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2005-11-11 00:09:16 (GMT)
commitf8eb1005a5bdb019d2a4ff3ef8d8e8015b22afcb (patch)
tree5a39a4c39001217546b79f81530fc847f65dbd1d /drivers/pci/pci-driver.c
parenta5312e28c195f6118ba52fb8abe17cf2efc6a427 (diff)
downloadlinux-fsl-qoriq-f8eb1005a5bdb019d2a4ff3ef8d8e8015b22afcb.tar.xz
[PATCH] pci-driver: store_new_id() not inline
store_new_id() should not be (and cannot be) inline; the function pointer is stored in a device_attribute table. Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/pci-driver.c')
-rw-r--r--drivers/pci/pci-driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
index 94e68c5..efb88c1 100644
--- a/drivers/pci/pci-driver.c
+++ b/drivers/pci/pci-driver.c
@@ -37,7 +37,7 @@ struct pci_dynid {
* Adds a new dynamic pci device ID to this driver,
* and causes the driver to probe for all devices again.
*/
-static inline ssize_t
+static ssize_t
store_new_id(struct device_driver *driver, const char *buf, size_t count)
{
struct pci_dynid *dynid;