diff options
author | Andrew Jeffery <andrew@aj.id.au> | 2017-04-07 08:58:17 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-04-11 03:47:44 -0400 |
commit | 03ffb507c8c4998fa85d3efae70cb18085457263 (patch) | |
tree | c49e4d9db8b918bb014ae11d166d46bb31b1d5ad | |
parent | 8d4264d86c1a31d7e0efd3e4c3e08bc91dbdb48c (diff) |
pinctrl: aspeed: Fix unused-const-variable warnings
Three video input signals suffered from a search/replace failure in
some copied code.
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/aspeed/pinctrl-aspeed-g4.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/pinctrl/aspeed/pinctrl-aspeed-g4.c b/drivers/pinctrl/aspeed/pinctrl-aspeed-g4.c index 7de596e2b9d4..731dc2352c71 100644 --- a/drivers/pinctrl/aspeed/pinctrl-aspeed-g4.c +++ b/drivers/pinctrl/aspeed/pinctrl-aspeed-g4.c | |||
@@ -856,8 +856,8 @@ SIG_EXPR_DECL(VPIG3, VPI18, VPI18_DESC, AB1_DESC); | |||
856 | SIG_EXPR_DECL(VPIG3, VPI24, VPI24_DESC, AB1_DESC); | 856 | SIG_EXPR_DECL(VPIG3, VPI24, VPI24_DESC, AB1_DESC); |
857 | SIG_EXPR_DECL(VPIG3, VPI30, VPI30_DESC, AB1_DESC); | 857 | SIG_EXPR_DECL(VPIG3, VPI30, VPI30_DESC, AB1_DESC); |
858 | SIG_EXPR_LIST_DECL(VPIG3, SIG_EXPR_PTR(VPIG3, VPI18), | 858 | SIG_EXPR_LIST_DECL(VPIG3, SIG_EXPR_PTR(VPIG3, VPI18), |
859 | SIG_EXPR_PTR(VPIG2, VPI24), | 859 | SIG_EXPR_PTR(VPIG3, VPI24), |
860 | SIG_EXPR_PTR(VPIG2, VPI30)); | 860 | SIG_EXPR_PTR(VPIG3, VPI30)); |
861 | SIG_EXPR_LIST_DECL_SINGLE(PWM3, PWM3, AB1_DESC); | 861 | SIG_EXPR_LIST_DECL_SINGLE(PWM3, PWM3, AB1_DESC); |
862 | MS_PIN_DECL(AB1, GPION3, VPIG3, PWM3); | 862 | MS_PIN_DECL(AB1, GPION3, VPIG3, PWM3); |
863 | FUNC_GROUP_DECL(PWM3, AB1); | 863 | FUNC_GROUP_DECL(PWM3, AB1); |
@@ -868,8 +868,8 @@ SIG_EXPR_DECL(VPIG4, VPI18, VPI18_DESC, W5_DESC); | |||
868 | SIG_EXPR_DECL(VPIG4, VPI24, VPI24_DESC, W5_DESC); | 868 | SIG_EXPR_DECL(VPIG4, VPI24, VPI24_DESC, W5_DESC); |
869 | SIG_EXPR_DECL(VPIG4, VPI30, VPI30_DESC, W5_DESC); | 869 | SIG_EXPR_DECL(VPIG4, VPI30, VPI30_DESC, W5_DESC); |
870 | SIG_EXPR_LIST_DECL(VPIG4, SIG_EXPR_PTR(VPIG4, VPI18), | 870 | SIG_EXPR_LIST_DECL(VPIG4, SIG_EXPR_PTR(VPIG4, VPI18), |
871 | SIG_EXPR_PTR(VPIG2, VPI24), | 871 | SIG_EXPR_PTR(VPIG4, VPI24), |
872 | SIG_EXPR_PTR(VPIG2, VPI30)); | 872 | SIG_EXPR_PTR(VPIG4, VPI30)); |
873 | SIG_EXPR_LIST_DECL_SINGLE(PWM4, PWM4, W5_DESC); | 873 | SIG_EXPR_LIST_DECL_SINGLE(PWM4, PWM4, W5_DESC); |
874 | MS_PIN_DECL(W5, GPION4, VPIG4, PWM4); | 874 | MS_PIN_DECL(W5, GPION4, VPIG4, PWM4); |
875 | FUNC_GROUP_DECL(PWM4, W5); | 875 | FUNC_GROUP_DECL(PWM4, W5); |
@@ -880,8 +880,8 @@ SIG_EXPR_DECL(VPIG5, VPI18, VPI18_DESC, Y4_DESC); | |||
880 | SIG_EXPR_DECL(VPIG5, VPI24, VPI24_DESC, Y4_DESC); | 880 | SIG_EXPR_DECL(VPIG5, VPI24, VPI24_DESC, Y4_DESC); |
881 | SIG_EXPR_DECL(VPIG5, VPI30, VPI30_DESC, Y4_DESC); | 881 | SIG_EXPR_DECL(VPIG5, VPI30, VPI30_DESC, Y4_DESC); |
882 | SIG_EXPR_LIST_DECL(VPIG5, SIG_EXPR_PTR(VPIG5, VPI18), | 882 | SIG_EXPR_LIST_DECL(VPIG5, SIG_EXPR_PTR(VPIG5, VPI18), |
883 | SIG_EXPR_PTR(VPIG2, VPI24), | 883 | SIG_EXPR_PTR(VPIG5, VPI24), |
884 | SIG_EXPR_PTR(VPIG2, VPI30)); | 884 | SIG_EXPR_PTR(VPIG5, VPI30)); |
885 | SIG_EXPR_LIST_DECL_SINGLE(PWM5, PWM5, Y4_DESC); | 885 | SIG_EXPR_LIST_DECL_SINGLE(PWM5, PWM5, Y4_DESC); |
886 | MS_PIN_DECL(Y4, GPION5, VPIG5, PWM5); | 886 | MS_PIN_DECL(Y4, GPION5, VPIG5, PWM5); |
887 | FUNC_GROUP_DECL(PWM5, Y4); | 887 | FUNC_GROUP_DECL(PWM5, Y4); |