mirror of https://github.com/hak5/openwrt.git
28 lines
961 B
Diff
28 lines
961 B
Diff
From 2729832886181a4f8bfe1e2c028a7bdb92004ce7 Mon Sep 17 00:00:00 2001
|
|
From: Stefan Wahren <stefan.wahren@i2se.com>
|
|
Date: Sun, 3 Feb 2019 14:02:33 +0100
|
|
Subject: [PATCH] pinctrl: bcm2835: declare pin config as generic
|
|
|
|
commit 1cb66f080c27349fbf87fb327d587b4b0b624fa3 upstream.
|
|
|
|
Since commit 0de704955ee44 ("pinctrl: bcm2835: Add support for
|
|
generic pinctrl binding") this driver is capable to use the generic
|
|
interface. So declare this accordingly.
|
|
|
|
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
|
|
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
|
|
---
|
|
drivers/pinctrl/bcm/pinctrl-bcm2835.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/pinctrl/bcm/pinctrl-bcm2835.c
|
|
+++ b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
|
|
@@ -969,6 +969,7 @@ static int bcm2835_pinconf_set(struct pi
|
|
}
|
|
|
|
static const struct pinconf_ops bcm2835_pinconf_ops = {
|
|
+ .is_generic = true,
|
|
.pin_config_get = bcm2835_pinconf_get,
|
|
.pin_config_set = bcm2835_pinconf_set,
|
|
};
|