diff options
| author | Andrew Victor <linux@maxim.org.za> | 2008-09-18 19:42:37 +0100 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-09-21 22:58:37 +0100 | 
| commit | bb1ad68b96a68e577a87ad62fe1aa26d052a52b5 (patch) | |
| tree | a98d65d54a4f441329f83988ffb9bea16e7d396e /arch/arm/mach-at91/at91sam9rl.c | |
| parent | e505240b6a6fd47b84cfeb1272ffeacd3e0874b3 (diff) | |
| download | olio-linux-3.10-bb1ad68b96a68e577a87ad62fe1aa26d052a52b5.tar.xz olio-linux-3.10-bb1ad68b96a68e577a87ad62fe1aa26d052a52b5.zip  | |
[ARM] 5258/1: [AT91] PWM controller initialization
Add platform_devices and configuration of the PWM controller found on
Atmel AT91CAP9, SAM9263 and SAM9RL processors.
SAM9263 support by Sedji Gaouaou.
Signed-off-by: Andrew Victor <linux@maxim.org.za>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91/at91sam9rl.c')
| -rw-r--r-- | arch/arm/mach-at91/at91sam9rl.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-at91/at91sam9rl.c b/arch/arm/mach-at91/at91sam9rl.c index 556bddf35b4..252e954b49f 100644 --- a/arch/arm/mach-at91/at91sam9rl.c +++ b/arch/arm/mach-at91/at91sam9rl.c @@ -131,8 +131,8 @@ static struct clk tc2_clk = {  	.pmc_mask	= 1 << AT91SAM9RL_ID_TC2,  	.type		= CLK_TYPE_PERIPHERAL,  }; -static struct clk pwmc_clk = { -	.name		= "pwmc_clk", +static struct clk pwm_clk = { +	.name		= "pwm_clk",  	.pmc_mask	= 1 << AT91SAM9RL_ID_PWMC,  	.type		= CLK_TYPE_PERIPHERAL,  }; @@ -180,7 +180,7 @@ static struct clk *periph_clocks[] __initdata = {  	&tc0_clk,  	&tc1_clk,  	&tc2_clk, -	&pwmc_clk, +	&pwm_clk,  	&tsc_clk,  	&dma_clk,  	&udphs_clk,  |