diff options
Diffstat (limited to 'drivers/misc/atmel-ssc.c')
-rw-r--r-- | drivers/misc/atmel-ssc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/misc/atmel-ssc.c b/drivers/misc/atmel-ssc.c index e068a76a5f6f..5be808406edc 100644 --- a/drivers/misc/atmel-ssc.c +++ b/drivers/misc/atmel-ssc.c | |||
@@ -19,7 +19,6 @@ | |||
19 | #include <linux/module.h> | 19 | #include <linux/module.h> |
20 | 20 | ||
21 | #include <linux/of.h> | 21 | #include <linux/of.h> |
22 | #include <linux/pinctrl/consumer.h> | ||
23 | 22 | ||
24 | /* Serialize access to ssc_list and user count */ | 23 | /* Serialize access to ssc_list and user count */ |
25 | static DEFINE_SPINLOCK(user_lock); | 24 | static DEFINE_SPINLOCK(user_lock); |
@@ -137,13 +136,6 @@ static int ssc_probe(struct platform_device *pdev) | |||
137 | struct resource *regs; | 136 | struct resource *regs; |
138 | struct ssc_device *ssc; | 137 | struct ssc_device *ssc; |
139 | const struct atmel_ssc_platform_data *plat_dat; | 138 | const struct atmel_ssc_platform_data *plat_dat; |
140 | struct pinctrl *pinctrl; | ||
141 | |||
142 | pinctrl = devm_pinctrl_get_select_default(&pdev->dev); | ||
143 | if (IS_ERR(pinctrl)) { | ||
144 | dev_err(&pdev->dev, "Failed to request pinctrl\n"); | ||
145 | return PTR_ERR(pinctrl); | ||
146 | } | ||
147 | 139 | ||
148 | ssc = devm_kzalloc(&pdev->dev, sizeof(struct ssc_device), GFP_KERNEL); | 140 | ssc = devm_kzalloc(&pdev->dev, sizeof(struct ssc_device), GFP_KERNEL); |
149 | if (!ssc) { | 141 | if (!ssc) { |