summaryrefslogtreecommitdiffstats
path: root/drivers/extcon
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2018-02-12 09:53:12 +0100
committerChanwoo Choi <cw00.choi@samsung.com>2018-03-21 13:58:08 +0900
commit66afdedf269cf485efb5affb30c34e1f37705445 (patch)
tree5928ec6d4e62a168c1d64c22068b3d931a2f2a08 /drivers/extcon
parenteca0f13c836a0d29fc2a713330698f08b743e86a (diff)
downloadop-kernel-dev-66afdedf269cf485efb5affb30c34e1f37705445.zip
op-kernel-dev-66afdedf269cf485efb5affb30c34e1f37705445.tar.gz
extcon: gpio: Localize platform data
Nothing in the entire kernel #includes <linux/extcon/extcon-gpio.h> so move the platform data declaration inside of the driver. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon')
-rw-r--r--drivers/extcon/extcon-gpio.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-gpio.c b/drivers/extcon/extcon-gpio.c
index ab770ad..5f88f36 100644
--- a/drivers/extcon/extcon-gpio.c
+++ b/drivers/extcon/extcon-gpio.c
@@ -18,7 +18,6 @@
*/
#include <linux/extcon-provider.h>
-#include <linux/extcon/extcon-gpio.h>
#include <linux/gpio.h>
#include <linux/gpio/consumer.h>
#include <linux/init.h>
@@ -29,6 +28,27 @@
#include <linux/slab.h>
#include <linux/workqueue.h>
+/**
+ * struct gpio_extcon_pdata - A simple GPIO-controlled extcon device.
+ * @extcon_id: The unique id of specific external connector.
+ * @gpio: Corresponding GPIO.
+ * @gpio_active_low: Boolean describing whether gpio active state is 1 or 0
+ * If true, low state of gpio means active.
+ * If false, high state of gpio means active.
+ * @debounce: Debounce time for GPIO IRQ in ms.
+ * @irq_flags: IRQ Flags (e.g., IRQF_TRIGGER_LOW).
+ * @check_on_resume: Boolean describing whether to check the state of gpio
+ * while resuming from sleep.
+ */
+struct gpio_extcon_pdata {
+ unsigned int extcon_id;
+ unsigned gpio;
+ bool gpio_active_low;
+ unsigned long debounce;
+ unsigned long irq_flags;
+ bool check_on_resume;
+};
+
struct gpio_extcon_data {
struct extcon_dev *edev;
int irq;
OpenPOWER on IntegriCloud