mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
mach-snapdragon: db410: pinctrl: fix pin count
Pin count in APQ8016 was wrong, fix that.
Fixes: ad97051b7f
("mach-snapdragon: Introduce pinctrl driver")
Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
This commit is contained in:
parent
b12e6945e9
commit
8d24a4776a
1 changed files with 3 additions and 3 deletions
|
@ -39,11 +39,11 @@ static const char *apq8016_get_function_name(struct udevice *dev,
|
|||
static const char *apq8016_get_pin_name(struct udevice *dev,
|
||||
unsigned int selector)
|
||||
{
|
||||
if (selector < 130) {
|
||||
if (selector < 122) {
|
||||
snprintf(pin_name, MAX_PIN_NAME_LEN, "GPIO_%u", selector);
|
||||
return pin_name;
|
||||
} else {
|
||||
return msm_pinctrl_pins[selector - 130];
|
||||
return msm_pinctrl_pins[selector - 122];
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ static unsigned int apq8016_get_function_mux(unsigned int selector)
|
|||
}
|
||||
|
||||
struct msm_pinctrl_data apq8016_data = {
|
||||
.pin_count = 140,
|
||||
.pin_count = 133,
|
||||
.functions_count = ARRAY_SIZE(msm_pinctrl_functions),
|
||||
.get_function_name = apq8016_get_function_name,
|
||||
.get_function_mux = apq8016_get_function_mux,
|
||||
|
|
Loading…
Reference in a new issue