aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/extcon.h
diff options
context:
space:
mode:
authorMayank Rana <mrana@codeaurora.org>2020-03-16 13:14:32 -0700
committerChanwoo Choi <cw00.choi@samsung.com>2020-03-25 08:16:13 +0900
commit995bb1092326b8ba8fa29456c334ac6a49765ccd (patch)
treeb3ab165b1f786bf005a0608077b954204dce3742 /include/linux/extcon.h
parentextcon: palmas: Hide error messages if gpio returns -EPROBE_DEFER (diff)
downloadwireguard-linux-995bb1092326b8ba8fa29456c334ac6a49765ccd.tar.xz
wireguard-linux-995bb1092326b8ba8fa29456c334ac6a49765ccd.zip
extcon: Mark extcon_get_edev_name() function as exported symbol
extcon_get_edev_name() function provides client driver to request extcon dev's name. If extcon driver and client driver are compiled as loadable modules, extcon_get_edev_name() function symbol is not visible to client driver. Hence mark extcon_find_edev_name() function as exported symbol. Signed-off-by: Mayank Rana <mrana@codeaurora.org> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'include/linux/extcon.h')
-rw-r--r--include/linux/extcon.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/extcon.h b/include/linux/extcon.h
index 1b1d77ec2114..fd183fb9c20f 100644
--- a/include/linux/extcon.h
+++ b/include/linux/extcon.h
@@ -286,6 +286,11 @@ static inline struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev,
{
return ERR_PTR(-ENODEV);
}
+
+static inline const char *extcon_get_edev_name(struct extcon_dev *edev)
+{
+ return NULL;
+}
#endif /* CONFIG_EXTCON */
/*