summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorgregkh@suse.de2005-03-22 21:17:13 +0100
committerGreg Kroah-Hartman2005-06-21 00:15:24 +0200
commit126eddfbf8cae8a20c22708192bffcbd77c8a889 (patch)
tree204287a611f015bb68f96d3be1135d2e93826b35 /drivers
parent[PATCH] Fix up bogus comment. (diff)
downloadkernel-qcow2-linux-126eddfbf8cae8a20c22708192bffcbd77c8a889.tar.gz
kernel-qcow2-linux-126eddfbf8cae8a20c22708192bffcbd77c8a889.tar.xz
kernel-qcow2-linux-126eddfbf8cae8a20c22708192bffcbd77c8a889.zip
[PATCH] driver core: change export symbol for driver_for_each_device()
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Index: linux-2.6.12-rc2/drivers/base/driver.c ===================================================================
Diffstat (limited to 'drivers')
-rw-r--r--drivers/base/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/driver.c b/drivers/base/driver.c
index f789b6cb4b56..1b645886e9eb 100644
--- a/drivers/base/driver.c
+++ b/drivers/base/driver.c
@@ -52,7 +52,7 @@ int driver_for_each_device(struct device_driver * drv, struct device * start,
return error;
}
-EXPORT_SYMBOL(driver_for_each_device);
+EXPORT_SYMBOL_GPL(driver_for_each_device);
/**