From 1252331f68710539993dbcfaf4ed91df473c5be8 Mon Sep 17 00:00:00 2001 From: Nishanth Menon Date: Thu, 14 Aug 2008 20:33:16 -0500 Subject: [PATCH] Driver: expose dummy_probe expose Dummy Probe function so that modules can use it. Signed-off-by: Nishanth Menon --- lib/driver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/driver.c b/lib/driver.c index 8509c3b2d..eea2c74d2 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) {