You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
941 B
33 lines
941 B
From fd7823e6993f440930e9cb85e56375be5823485c Mon Sep 17 00:00:00 2001
|
|
From: Linus Walleij <linus.walleij@linaro.org>
|
|
Date: Sat, 14 Oct 2017 17:13:03 +0200
|
|
Subject: [PATCH 02/31] pinctrl: gemini: Add missing functions
|
|
|
|
Some two functions were missing from the Gemini pin control
|
|
driver. Noticed when trying to use ethernet. Fix it up by
|
|
adding them.
|
|
|
|
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
|
|
---
|
|
drivers/pinctrl/pinctrl-gemini.c | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
--- a/drivers/pinctrl/pinctrl-gemini.c
|
|
+++ b/drivers/pinctrl/pinctrl-gemini.c
|
|
@@ -2074,6 +2074,16 @@ static const struct gemini_pmx_func gemi
|
|
.num_groups = ARRAY_SIZE(satagrps),
|
|
},
|
|
{
|
|
+ .name = "usb",
|
|
+ .groups = usbgrps,
|
|
+ .num_groups = ARRAY_SIZE(usbgrps),
|
|
+ },
|
|
+ {
|
|
+ .name = "gmii",
|
|
+ .groups = gmiigrps,
|
|
+ .num_groups = ARRAY_SIZE(gmiigrps),
|
|
+ },
|
|
+ {
|
|
.name = "pci",
|
|
.groups = pcigrps,
|
|
.num_groups = ARRAY_SIZE(pcigrps),
|
|
|