Commit 2c43ec94 authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Nicolas Ferre

avr32/at32ap: switch to the generic PWM framework

Switch to the pwm/pwm-atmel driver instead of misc/atmel_pwm
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: default avatarHans-Christian Egtvedt <egtvedt@samfundet.no>
Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
parent bb4bbbaa
...@@ -1553,7 +1553,7 @@ static struct resource atmel_pwm0_resource[] __initdata = { ...@@ -1553,7 +1553,7 @@ static struct resource atmel_pwm0_resource[] __initdata = {
IRQ(24), IRQ(24),
}; };
static struct clk atmel_pwm0_mck = { static struct clk atmel_pwm0_mck = {
.name = "pwm_clk", .name = "at91sam9rl-pwm",
.parent = &pbb_clk, .parent = &pbb_clk,
.mode = pbb_clk_mode, .mode = pbb_clk_mode,
.get_rate = pbb_clk_get_rate, .get_rate = pbb_clk_get_rate,
...@@ -1568,7 +1568,7 @@ struct platform_device *__init at32_add_device_pwm(u32 mask) ...@@ -1568,7 +1568,7 @@ struct platform_device *__init at32_add_device_pwm(u32 mask)
if (!mask) if (!mask)
return NULL; return NULL;
pdev = platform_device_alloc("atmel_pwm", 0); pdev = platform_device_alloc("at91sam9rl-pwm", 0);
if (!pdev) if (!pdev)
return NULL; return NULL;
...@@ -1576,9 +1576,6 @@ struct platform_device *__init at32_add_device_pwm(u32 mask) ...@@ -1576,9 +1576,6 @@ struct platform_device *__init at32_add_device_pwm(u32 mask)
ARRAY_SIZE(atmel_pwm0_resource))) ARRAY_SIZE(atmel_pwm0_resource)))
goto out_free_pdev; goto out_free_pdev;
if (platform_device_add_data(pdev, &mask, sizeof(mask)))
goto out_free_pdev;
pin_mask = 0; pin_mask = 0;
if (mask & (1 << 0)) if (mask & (1 << 0))
pin_mask |= (1 << 28); pin_mask |= (1 << 28);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment