summaryrefslogtreecommitdiffstats
path: root/net/rfkill
diff options
context:
space:
mode:
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>2016-01-25 04:03:49 -0500
committerJohannes Berg <johannes.berg@intel.com>2016-02-24 03:13:09 -0500
commitfb2e6b7b7b02ab35a9d5355a69097a6f60c69d38 (patch)
tree89c4a62b5ae353c347116cb58ef112c79378a8cf /net/rfkill
parentd54bbaf45af04982d91b424ae0d2e8fe2fb78bd8 (diff)
net: rfkill: gpio: remove rfkill_gpio_platform_data
No more users for it. Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/rfkill')
-rw-r--r--net/rfkill/Kconfig3
-rw-r--r--net/rfkill/rfkill-gpio.c8
2 files changed, 1 insertions, 10 deletions
diff --git a/net/rfkill/Kconfig b/net/rfkill/Kconfig
index 598d374f6a35..868f1ad0415a 100644
--- a/net/rfkill/Kconfig
+++ b/net/rfkill/Kconfig
@@ -41,5 +41,4 @@ config RFKILL_GPIO
41 default n 41 default n
42 help 42 help
43 If you say yes here you get support of a generic gpio RFKILL 43 If you say yes here you get support of a generic gpio RFKILL
44 driver. The platform should fill in the appropriate fields in the 44 driver.
45 rfkill_gpio_platform_data structure and pass that to the driver.
diff --git a/net/rfkill/rfkill-gpio.c b/net/rfkill/rfkill-gpio.c
index 1a9c0316aad1..76c01cbd56e3 100644
--- a/net/rfkill/rfkill-gpio.c
+++ b/net/rfkill/rfkill-gpio.c
@@ -27,8 +27,6 @@
27#include <linux/acpi.h> 27#include <linux/acpi.h>
28#include <linux/gpio/consumer.h> 28#include <linux/gpio/consumer.h>
29 29
30#include <linux/rfkill-gpio.h>
31
32struct rfkill_gpio_data { 30struct rfkill_gpio_data {
33 const char *name; 31 const char *name;
34 enum rfkill_type type; 32 enum rfkill_type type;
@@ -89,7 +87,6 @@ static int rfkill_gpio_acpi_probe(struct device *dev,
89 87
90static int rfkill_gpio_probe(struct platform_device *pdev) 88static int rfkill_gpio_probe(struct platform_device *pdev)
91{ 89{
92 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
93 struct rfkill_gpio_data *rfkill; 90 struct rfkill_gpio_data *rfkill;
94 struct gpio_desc *gpio; 91 struct gpio_desc *gpio;
95 const char *type_name; 92 const char *type_name;
@@ -111,11 +108,6 @@ static int rfkill_gpio_probe(struct platform_device *pdev)
111 ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill); 108 ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill);
112 if (ret) 109 if (ret)
113 return ret; 110 return ret;
114 } else if (pdata) {
115 rfkill->name = pdata->name;
116 rfkill->type = pdata->type;
117 } else {
118 return -ENODEV;
119 } 111 }
120 112
121 rfkill->clk = devm_clk_get(&pdev->dev, NULL); 113 rfkill->clk = devm_clk_get(&pdev->dev, NULL);