aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/connector/connector.c7
-rw-r--r--drivers/w1/Kconfig1
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/connector/connector.c b/drivers/connector/connector.c
index 79d581c86520..b49bacfd8de8 100644
--- a/drivers/connector/connector.c
+++ b/drivers/connector/connector.c
@@ -121,6 +121,7 @@ nlmsg_failure:
121 kfree_skb(skb); 121 kfree_skb(skb);
122 return -EINVAL; 122 return -EINVAL;
123} 123}
124EXPORT_SYMBOL_GPL(cn_netlink_send);
124 125
125/* 126/*
126 * Callback helper - queues work and setup destructor for given data. 127 * Callback helper - queues work and setup destructor for given data.
@@ -319,6 +320,7 @@ int cn_add_callback(struct cb_id *id, char *name, void (*callback)(void *))
319 320
320 return 0; 321 return 0;
321} 322}
323EXPORT_SYMBOL_GPL(cn_add_callback);
322 324
323/* 325/*
324 * Callback remove routing - removes callback 326 * Callback remove routing - removes callback
@@ -335,6 +337,7 @@ void cn_del_callback(struct cb_id *id)
335 cn_queue_del_callback(dev->cbdev, id); 337 cn_queue_del_callback(dev->cbdev, id);
336 cn_notify(id, 1); 338 cn_notify(id, 1);
337} 339}
340EXPORT_SYMBOL_GPL(cn_del_callback);
338 341
339/* 342/*
340 * Checks two connector's control messages to be the same. 343 * Checks two connector's control messages to be the same.
@@ -488,7 +491,3 @@ static void __devexit cn_fini(void)
488 491
489subsys_initcall(cn_init); 492subsys_initcall(cn_init);
490module_exit(cn_fini); 493module_exit(cn_fini);
491
492EXPORT_SYMBOL_GPL(cn_add_callback);
493EXPORT_SYMBOL_GPL(cn_del_callback);
494EXPORT_SYMBOL_GPL(cn_netlink_send);
diff --git a/drivers/w1/Kconfig b/drivers/w1/Kconfig
index f2d9a08e89ae..8b3d0f0c7bd5 100644
--- a/drivers/w1/Kconfig
+++ b/drivers/w1/Kconfig
@@ -2,6 +2,7 @@ menu "Dallas's 1-wire bus"
2 2
3config W1 3config W1
4 tristate "Dallas's 1-wire support" 4 tristate "Dallas's 1-wire support"
5 depends on CONNECTOR
5 ---help--- 6 ---help---
6 Dallas' 1-wire bus is useful to connect slow 1-pin devices 7 Dallas' 1-wire bus is useful to connect slow 1-pin devices
7 such as iButtons and thermal sensors. 8 such as iButtons and thermal sensors.