diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-03-15 10:07:02 +0530 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-03-27 22:46:18 +0100 |
commit | 1164d73a98797970596023d0c54ea40855aaa1ce (patch) | |
tree | 2bf71b94efcb81de033f175bb7fdd0a946d4fa14 /drivers/pinctrl | |
parent | c078d78aa96ceafab7379b6a50e92d9d8e2f97b5 (diff) | |
download | op-kernel-dev-1164d73a98797970596023d0c54ea40855aaa1ce.zip op-kernel-dev-1164d73a98797970596023d0c54ea40855aaa1ce.tar.gz |
pinctrl: at91: Remove duplicate const
const declared twice. Fixes the following sparse warning:
drivers/pinctrl/pinctrl-at91.c:815:21: warning: duplicate const
drivers/pinctrl/pinctrl-at91.c:849:21: warning: duplicate const
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/pinctrl-at91.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c index e50fa5f..353c7bf 100644 --- a/drivers/pinctrl/pinctrl-at91.c +++ b/drivers/pinctrl/pinctrl-at91.c @@ -812,7 +812,7 @@ static int at91_pinctrl_mux_mask(struct at91_pinctrl *info, { int ret = 0; int size; - const const __be32 *list; + const __be32 *list; list = of_get_property(np, "atmel,mux-mask", &size); if (!list) { @@ -846,7 +846,7 @@ static int at91_pinctrl_parse_groups(struct device_node *np, { struct at91_pmx_pin *pin; int size; - const const __be32 *list; + const __be32 *list; int i, j; dev_dbg(info->dev, "group(%d): %s\n", index, np->name); |