diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2013-06-04 01:13:38 +0900 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-03-20 17:41:03 +0900 |
commit | 81b2a1b01d27055bff25b740ea988491f416d02d (patch) | |
tree | a67654a4d6a6cd76e725ee962bdd13b492e49f23 /drivers/extcon | |
parent | c2f17a6b893300c1b672e4058b96047ff9019a6e (diff) | |
download | linux-3.10-81b2a1b01d27055bff25b740ea988491f416d02d.tar.gz linux-3.10-81b2a1b01d27055bff25b740ea988491f416d02d.tar.bz2 linux-3.10-81b2a1b01d27055bff25b740ea988491f416d02d.zip |
extcon: Add EXPORT_SYMBOL_GPL for exported functions
Added EXPORT_SYMBOL_GPL() for extcon_register_interest and
extcon_register_notifier in order to avoid undefined reference
error when building the consumer modules of extcon as _modules_.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/extcon')
-rw-r--r-- | drivers/extcon/extcon-class.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/extcon/extcon-class.c b/drivers/extcon/extcon-class.c index 972b157b010..77fcac5cd00 100644 --- a/drivers/extcon/extcon-class.c +++ b/drivers/extcon/extcon-class.c @@ -507,6 +507,7 @@ int extcon_register_interest(struct extcon_specific_cable_nb *obj, return -ENODEV; } } +EXPORT_SYMBOL_GPL(extcon_register_interest); /** * extcon_unregister_interest() - Unregister the notifier registered by @@ -521,6 +522,7 @@ int extcon_unregister_interest(struct extcon_specific_cable_nb *obj) return raw_notifier_chain_unregister(&obj->edev->nh, &obj->internal_nb); } +EXPORT_SYMBOL_GPL(extcon_unregister_interest); /** * extcon_register_notifier() - Register a notifiee to get notified by |