aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/connector
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/connector')
-rw-r--r--drivers/connector/connector.c7
1 files changed, 3 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);