Skip to content

Commit

Permalink
ARM: pxa: use PWM lookup table for all machines
Browse files Browse the repository at this point in the history
The recent change to use a pwm lookup table for the ezx machines
was incomplete and only changed the a780 model, but not the
other ones in the same file.

This adds the missing calls to pwm_add_table().

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: c332202 ("ARM: pxa: ezx: Use PWM lookup table")
Acked-by: Thierry Reding <thierry.reding@gmail.com>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
  • Loading branch information
Arnd Bergmann committed Dec 10, 2015
1 parent e229213 commit ddd47fb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/arm/mach-pxa/ezx.c
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,7 @@ static void __init e680_init(void)

pxa_set_keypad_info(&e680_keypad_platform_data);

pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
platform_add_devices(ARRAY_AND_SIZE(e680_devices));
}
Expand Down Expand Up @@ -956,6 +957,7 @@ static void __init a1200_init(void)

pxa_set_keypad_info(&a1200_keypad_platform_data);

pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
platform_add_devices(ARRAY_AND_SIZE(a1200_devices));
}
Expand Down Expand Up @@ -1148,6 +1150,7 @@ static void __init a910_init(void)
platform_device_register(&a910_camera);
}

pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
platform_add_devices(ARRAY_AND_SIZE(a910_devices));
}
Expand Down Expand Up @@ -1215,6 +1218,7 @@ static void __init e6_init(void)

pxa_set_keypad_info(&e6_keypad_platform_data);

pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
platform_add_devices(ARRAY_AND_SIZE(e6_devices));
}
Expand Down Expand Up @@ -1256,6 +1260,7 @@ static void __init e2_init(void)

pxa_set_keypad_info(&e2_keypad_platform_data);

pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
platform_add_devices(ARRAY_AND_SIZE(e2_devices));
}
Expand Down

0 comments on commit ddd47fb

Please sign in to comment.