summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorNishanth Menon <x0nishan@ti.com>2008-08-14 20:33:16 -0500
committerSascha Hauer <s.hauer@pengutronix.de>2008-08-15 08:47:50 +0200
commit1252331f68710539993dbcfaf4ed91df473c5be8 (patch)
treee9603a25b6e2c0e0fe959dca463376efc29dff73 /lib
parent584f9990a853946ba06f10f15f312a051457944d (diff)
downloadbarebox-1252331f68710539993dbcfaf4ed91df473c5be8.tar.gz
barebox-1252331f68710539993dbcfaf4ed91df473c5be8.tar.xz
Driver: expose dummy_probe
expose Dummy Probe function so that modules can use it. Signed-off-by: Nishanth Menon <x0nishan@ti.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/driver.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/driver.c b/lib/driver.c
index 8509c3b2d0..eea2c74d22 100644
--- a/lib/driver.c
+++ b/lib/driver.c
@@ -286,6 +286,7 @@ int dummy_probe(struct device_d *dev)
{
return 0;
}
+EXPORT_SYMBOL(dummy_probe);
static int do_devinfo_subtree(struct device_d *dev, int depth, char edge)
{