]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
extcon: gpio: Localize platform data
authorLinus Walleij <linus.walleij@linaro.org>
Mon, 12 Feb 2018 08:53:12 +0000 (09:53 +0100)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 21 Mar 2018 04:58:08 +0000 (13:58 +0900)
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>
drivers/extcon/extcon-gpio.c
include/linux/extcon/extcon-gpio.h [deleted file]

index ab770adcca7e32330368cc9d80f963312a226cc1..5f88f36cc54eb9ab68a8c4c142f75738b866e120 100644 (file)
@@ -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>
 #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;
diff --git a/include/linux/extcon/extcon-gpio.h b/include/linux/extcon/extcon-gpio.h
deleted file mode 100644 (file)
index 7cacafb..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Single-state GPIO extcon driver based on extcon class
- *
- * Copyright (C) 2012 Samsung Electronics
- * Author: MyungJoo Ham <myungjoo.ham@samsung.com>
- *
- * based on switch class driver
- * Copyright (C) 2008 Google, Inc.
- * Author: Mike Lockwood <lockwood@android.com>
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
-#ifndef __EXTCON_GPIO_H__
-#define __EXTCON_GPIO_H__ __FILE__
-
-#include <linux/extcon.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;
-};
-
-#endif /* __EXTCON_GPIO_H__ */