extcon: Move OF helper function to extcon core and change function name
authorChanwoo Choi <cw00.choi@samsung.com>
Tue, 18 Mar 2014 11:31:33 +0000 (20:31 +0900)
committerMarek Szyprowski <m.szyprowski@samsung.com>
Thu, 15 May 2014 05:28:39 +0000 (07:28 +0200)
This patch move simply OF helper function to extcon core and change function
name as following:
- of_extcon_get_extcon_dev() -> extcon_get_edev_by_phandle()

Change-Id: I37fd827f945e3d713cfe15607689eab6792007b1
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Acked-by: Felipe Balbi <balbi@ti.com>
drivers/extcon/Kconfig
drivers/extcon/Makefile
drivers/extcon/extcon-class.c
drivers/extcon/of_extcon.c [deleted file]
drivers/misc/sii9234.c
drivers/usb/gadget/udc-core.c
include/linux/extcon.h
include/linux/extcon/of_extcon.h [deleted file]

index aaebc6d..90b3ad0 100644 (file)
@@ -14,10 +14,6 @@ if EXTCON
 
 comment "Extcon Device Drivers"
 
-config OF_EXTCON
-       def_tristate y
-       depends on OF
-
 config EXTCON_GPIO
        tristate "GPIO extcon support"
        depends on GPIOLIB
index b04c038..034bb95 100644 (file)
@@ -2,8 +2,6 @@
 # Makefile for external connector class (extcon) devices
 #
 
-obj-$(CONFIG_OF_EXTCON)                += of_extcon.o
-
 obj-$(CONFIG_EXTCON)           += extcon-class.o
 obj-$(CONFIG_EXTCON_GPIO)      += extcon-gpio.o
 obj-$(CONFIG_EXTCON_ADC_JACK)  += extcon-adc-jack.o
index 5fe0ff7..3bc083b 100644 (file)
@@ -31,6 +31,7 @@
 #include <linux/extcon.h>
 #include <linux/slab.h>
 #include <linux/sysfs.h>
+#include <linux/of.h>
 
 /*
  * extcon_cable_name suggests the standard cable names for commonly used
@@ -843,6 +844,47 @@ void extcon_dev_unregister(struct extcon_dev *edev)
 }
 EXPORT_SYMBOL_GPL(extcon_dev_unregister);
 
+#ifdef CONFIG_OF
+/*
+ * extcon_get_edev_by_phandle - Get the extcon device from devicetree
+ * @dev - instance to the given device
+ * @index - index into list of extcon_dev
+ *
+ * return the instance of extcon device
+ */
+struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
+{
+       struct device_node *node;
+       struct extcon_dev *edev;
+
+       if (!dev->of_node) {
+               dev_err(dev, "device does not have a device node entry\n");
+               return ERR_PTR(-EINVAL);
+       }
+
+       node = of_parse_phandle(dev->of_node, "extcon", index);
+       if (!node) {
+               dev_err(dev, "failed to get phandle in %s node\n",
+                       dev->of_node->full_name);
+               return ERR_PTR(-ENODEV);
+       }
+
+       edev = extcon_get_extcon_dev(node->name);
+       if (!edev) {
+               dev_err(dev, "unable to get extcon device : %s\n", node->name);
+               return ERR_PTR(-ENODEV);
+       }
+
+       return edev;
+}
+#else
+struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
+{
+       return ERR_PTR(-ENOSYS);
+}
+#endif /* CONFIG_OF */
+EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle);
+
 static int __init extcon_class_init(void)
 {
        return create_extcon_class();
diff --git a/drivers/extcon/of_extcon.c b/drivers/extcon/of_extcon.c
deleted file mode 100644 (file)
index e8ea4e0..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * OF helpers for External connector (extcon) framework
- *
- * Copyright (C) 2013 Texas Instruments, Inc.
- * Kishon Vijay Abraham I <kishon@ti.com>
- *
- * Copyright (C) 2013 Samsung Electronics
- * Chanwoo Choi <cw00.choi@samsung.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
-
-#include <linux/module.h>
-#include <linux/slab.h>
-#include <linux/err.h>
-#include <linux/extcon.h>
-#include <linux/of.h>
-#include <linux/of_platform.h>
-#include <linux/extcon/of_extcon.h>
-
-/*
- * of_extcon_get_extcon_dev - Get the extcon device from devicetree
- * @dev - instance to the given device
- * @index - index into list of extcon_dev
- *
- * return the instance of extcon device
- */
-struct extcon_dev *of_extcon_get_extcon_dev(struct device *dev, int index)
-{
-       struct device_node *node;
-       struct extcon_dev *edev;
-
-       if (!dev->of_node) {
-               dev_dbg(dev, "device does not have a device node entry\n");
-               return ERR_PTR(-EINVAL);
-       }
-
-       node = of_parse_phandle(dev->of_node, "extcon", index);
-       if (!node) {
-               dev_dbg(dev, "failed to get phandle in %s node\n",
-                       dev->of_node->full_name);
-               return ERR_PTR(-ENODEV);
-       }
-
-       edev = extcon_get_extcon_dev(node->name);
-       if (!edev) {
-               dev_dbg(dev, "unable to get extcon device : %s\n", node->name);
-               return ERR_PTR(-ENODEV);
-       }
-
-       return edev;
-}
-EXPORT_SYMBOL_GPL(of_extcon_get_extcon_dev);
index 8d051c4..dfc7082 100644 (file)
@@ -43,7 +43,6 @@
 #include <linux/extcon.h>
 #include <linux/of.h>
 #include <linux/of_gpio.h>
-#include <linux/extcon/of_extcon.h>
 #include <linux/regulator/machine.h>
 
 /* MHL Tx registers and bits */
@@ -872,7 +871,7 @@ static int sii9234_extcon_init(struct sii9234 *sii9234)
        int ret;
 
        if (of_property_read_bool(dev->of_node, "extcon")) {
-               edev = of_extcon_get_extcon_dev(dev, 0);
+               edev = extcon_get_edev_by_phandle(dev, 0);
                if (IS_ERR(edev)) {
                        dev_err(dev, "failed to acquire extcon device\n");
                        return PTR_ERR(edev);
index b42edf1..bdd7336 100644 (file)
@@ -29,7 +29,6 @@
 
 #include <linux/of.h>
 #include <linux/extcon.h>
-#include <linux/extcon/of_extcon.h>
 #include <linux/workqueue.h>
 
 /**
@@ -379,7 +378,7 @@ static int udc_bind_to_driver(struct usb_udc *udc, struct usb_gadget_driver *dri
        node = udc->gadget->dev.of_node;
        /* Check if we have an extcon associated with the UDC driver */
        if (node && of_property_read_bool(node, "extcon")) {
-               edev = of_extcon_get_extcon_dev(&udc->gadget->dev, 0);
+               edev = extcon_get_edev_by_phandle(&udc->gadget->dev, 0);
 
                if(IS_ERR(edev)) {
                        dev_dbg(&udc->dev, "couldn't get extcon device\n");
index fcb51c8..d948d87 100644 (file)
@@ -237,6 +237,12 @@ extern int extcon_register_notifier(struct extcon_dev *edev,
                                    struct notifier_block *nb);
 extern int extcon_unregister_notifier(struct extcon_dev *edev,
                                      struct notifier_block *nb);
+
+/*
+ * Following API get the extcon device from devicetree.
+ * This function use phandle of devicetree to get extcon device directly.
+ */
+extern struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index);
 #else /* CONFIG_EXTCON */
 static inline int extcon_dev_register(struct extcon_dev *edev,
                                      struct device *dev)
@@ -322,5 +328,11 @@ static inline int extcon_unregister_interest(struct extcon_specific_cable_nb
 {
        return 0;
 }
+
+static inline struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev,
+                                                           int index)
+{
+       return ERR_PTR(-ENODEV);
+}
 #endif /* CONFIG_EXTCON */
 #endif /* __LINUX_EXTCON_H__ */
diff --git a/include/linux/extcon/of_extcon.h b/include/linux/extcon/of_extcon.h
deleted file mode 100644 (file)
index 0ebfeff..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * OF helpers for External connector (extcon) framework
- *
- * Copyright (C) 2013 Texas Instruments, Inc.
- * Kishon Vijay Abraham I <kishon@ti.com>
- *
- * Copyright (C) 2013 Samsung Electronics
- * Chanwoo Choi <cw00.choi@samsung.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
-
-#ifndef __LINUX_OF_EXTCON_H
-#define __LINUX_OF_EXTCON_H
-
-#include <linux/err.h>
-
-#if IS_ENABLED(CONFIG_OF_EXTCON)
-extern struct extcon_dev
-       *of_extcon_get_extcon_dev(struct device *dev, int index);
-#else
-static inline struct extcon_dev
-       *of_extcon_get_extcon_dev(struct device *dev, int index)
-{
-       return ERR_PTR(-ENOSYS);
-}
-#endif /* CONFIG_OF_EXTCON */
-#endif /* __LINUX_OF_EXTCON_H */