diff options
author | Chanho Park <chanho61.park@samsung.com> | 2012-01-03 02:47:51 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-01-03 03:10:09 -0500 |
commit | 0d2006bbf09e817f125ba1e42b2549bc2c5d7351 (patch) | |
tree | f452f0a77705139763448c5676f6118270285439 /drivers/pinctrl | |
parent | 706e8520e8450a631ca6f798f8c811faf56f0a59 (diff) |
pinctrl: remove unnecessary max pin number
This patch removes maxpin member in the pin control descriptor
because we don't need this value as we enumerate a pin space
using offset.
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/core.c | 1 | ||||
-rw-r--r-- | drivers/pinctrl/pinctrl-sirf.c | 1 | ||||
-rw-r--r-- | drivers/pinctrl/pinctrl-u300.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/drivers/pinctrl/core.c b/drivers/pinctrl/core.c index 79c56d90fcc5..569bdb3ef104 100644 --- a/drivers/pinctrl/core.c +++ b/drivers/pinctrl/core.c | |||
@@ -354,7 +354,6 @@ static int pinctrl_pins_show(struct seq_file *s, void *what) | |||
354 | unsigned i, pin; | 354 | unsigned i, pin; |
355 | 355 | ||
356 | seq_printf(s, "registered pins: %d\n", pctldev->desc->npins); | 356 | seq_printf(s, "registered pins: %d\n", pctldev->desc->npins); |
357 | seq_printf(s, "max pin number: %d\n", pctldev->desc->maxpin); | ||
358 | 357 | ||
359 | /* The pin number can be retrived from the pin controller descriptor */ | 358 | /* The pin number can be retrived from the pin controller descriptor */ |
360 | for (i = 0; i < pctldev->desc->npins; i++) { | 359 | for (i = 0; i < pctldev->desc->npins; i++) { |
diff --git a/drivers/pinctrl/pinctrl-sirf.c b/drivers/pinctrl/pinctrl-sirf.c index 99e688e07ea0..6b3534cc051a 100644 --- a/drivers/pinctrl/pinctrl-sirf.c +++ b/drivers/pinctrl/pinctrl-sirf.c | |||
@@ -1086,7 +1086,6 @@ static struct pinctrl_desc sirfsoc_pinmux_desc = { | |||
1086 | .name = DRIVER_NAME, | 1086 | .name = DRIVER_NAME, |
1087 | .pins = sirfsoc_pads, | 1087 | .pins = sirfsoc_pads, |
1088 | .npins = ARRAY_SIZE(sirfsoc_pads), | 1088 | .npins = ARRAY_SIZE(sirfsoc_pads), |
1089 | .maxpin = SIRFSOC_NUM_PADS - 1, | ||
1090 | .pctlops = &sirfsoc_pctrl_ops, | 1089 | .pctlops = &sirfsoc_pctrl_ops, |
1091 | .pmxops = &sirfsoc_pinmux_ops, | 1090 | .pmxops = &sirfsoc_pinmux_ops, |
1092 | .owner = THIS_MODULE, | 1091 | .owner = THIS_MODULE, |
diff --git a/drivers/pinctrl/pinctrl-u300.c b/drivers/pinctrl/pinctrl-u300.c index 7e89b367a7e5..c8d02f1c2b5e 100644 --- a/drivers/pinctrl/pinctrl-u300.c +++ b/drivers/pinctrl/pinctrl-u300.c | |||
@@ -1048,7 +1048,6 @@ static struct pinctrl_desc u300_pmx_desc = { | |||
1048 | .name = DRIVER_NAME, | 1048 | .name = DRIVER_NAME, |
1049 | .pins = u300_pads, | 1049 | .pins = u300_pads, |
1050 | .npins = ARRAY_SIZE(u300_pads), | 1050 | .npins = ARRAY_SIZE(u300_pads), |
1051 | .maxpin = U300_NUM_PADS-1, | ||
1052 | .pctlops = &u300_pctrl_ops, | 1051 | .pctlops = &u300_pctrl_ops, |
1053 | .pmxops = &u300_pmx_ops, | 1052 | .pmxops = &u300_pmx_ops, |
1054 | .owner = THIS_MODULE, | 1053 | .owner = THIS_MODULE, |