diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2014-05-19 16:42:35 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2014-05-21 05:19:35 -0400 |
commit | e02a84a5ad2f46d4a262884df5ad9ab9e833a7b5 (patch) | |
tree | a181894a0b9bc45a010938634a0b01d06f164c12 /arch/arm | |
parent | dc671157139918eaf61f73db1bd6dd02960b66e2 (diff) |
ARM: OMAP3: Beagle: initialize all the struct pwm_lookup members
The PWM core can retrieve the period from the PWM lookup table, so the
struct led_pwm.pwm_period_ns member can be removed.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap2/board-omap3beagle.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index d6ed819ff15c..f27e1ec90b5e 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c | |||
@@ -61,7 +61,14 @@ | |||
61 | 61 | ||
62 | static struct pwm_lookup pwm_lookup[] = { | 62 | static struct pwm_lookup pwm_lookup[] = { |
63 | /* LEDB -> PMU_STAT */ | 63 | /* LEDB -> PMU_STAT */ |
64 | PWM_LOOKUP("twl-pwmled", 1, "leds_pwm", "beagleboard::pmu_stat"), | 64 | { |
65 | .provider = "twl-pwmled", | ||
66 | .index = 1, | ||
67 | .dev_id = "leds_pwm", | ||
68 | .con_id = "beagleboard::pmu_stat", | ||
69 | .period = 7812500, | ||
70 | .polarity = PWM_POLARITY_NORMAL, | ||
71 | }, | ||
65 | }; | 72 | }; |
66 | 73 | ||
67 | static struct led_pwm pwm_leds[] = { | 74 | static struct led_pwm pwm_leds[] = { |