mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08: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:
@ -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,
|
||||
|
Reference in New Issue
Block a user