diff options
author | Andrew Victor <linux@maxim.org.za> | 2008-04-02 16:55:19 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-04-04 04:52:24 -0400 |
commit | 4fd9212cb9bad88ec7c8bf5313f53331905f957a (patch) | |
tree | 7aeda933234a76c6a5240fed992579ecffb015c3 /arch | |
parent | 565ac44593d17bdfc9f595614b56bb335a9b8d6f (diff) |
[ARM] 4908/1: [AT91] RTT platform_device fix
The RTT-as-RTC driver will search for the user-specified RTT
peripheral via ID number (0 .. 1).
Therefore if the processor only contains a single RTT peripheral, we
need to set its platform_device.id to "0" instead of "-1".
Also add the missing platform_device resource for the CAP9 processor.
Bug reported 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')
-rw-r--r-- | arch/arm/mach-at91/at91cap9_devices.c | 13 | ||||
-rw-r--r-- | arch/arm/mach-at91/at91sam9260_devices.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-at91/at91sam9261_devices.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-at91/at91sam9rl_devices.c | 2 |
4 files changed, 14 insertions, 5 deletions
diff --git a/arch/arm/mach-at91/at91cap9_devices.c b/arch/arm/mach-at91/at91cap9_devices.c index 10f15f3a56ca..7d782ee4117b 100644 --- a/arch/arm/mach-at91/at91cap9_devices.c +++ b/arch/arm/mach-at91/at91cap9_devices.c | |||
@@ -540,10 +540,19 @@ void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) | |||
540 | * RTT | 540 | * RTT |
541 | * -------------------------------------------------------------------- */ | 541 | * -------------------------------------------------------------------- */ |
542 | 542 | ||
543 | static struct resource rtt_resources[] = { | ||
544 | { | ||
545 | .start = AT91_BASE_SYS + AT91_RTT, | ||
546 | .end = AT91_BASE_SYS + AT91_RTT + SZ_16 - 1, | ||
547 | .flags = IORESOURCE_MEM, | ||
548 | } | ||
549 | }; | ||
550 | |||
543 | static struct platform_device at91cap9_rtt_device = { | 551 | static struct platform_device at91cap9_rtt_device = { |
544 | .name = "at91_rtt", | 552 | .name = "at91_rtt", |
545 | .id = -1, | 553 | .id = 0, |
546 | .num_resources = 0, | 554 | .resource = rtt_resources, |
555 | .num_resources = ARRAY_SIZE(rtt_resources), | ||
547 | }; | 556 | }; |
548 | 557 | ||
549 | static void __init at91_add_device_rtt(void) | 558 | static void __init at91_add_device_rtt(void) |
diff --git a/arch/arm/mach-at91/at91sam9260_devices.c b/arch/arm/mach-at91/at91sam9260_devices.c index d613761dc2f8..f20afe4d156c 100644 --- a/arch/arm/mach-at91/at91sam9260_devices.c +++ b/arch/arm/mach-at91/at91sam9260_devices.c | |||
@@ -558,7 +558,7 @@ static struct resource rtt_resources[] = { | |||
558 | 558 | ||
559 | static struct platform_device at91sam9260_rtt_device = { | 559 | static struct platform_device at91sam9260_rtt_device = { |
560 | .name = "at91_rtt", | 560 | .name = "at91_rtt", |
561 | .id = -1, | 561 | .id = 0, |
562 | .resource = rtt_resources, | 562 | .resource = rtt_resources, |
563 | .num_resources = ARRAY_SIZE(rtt_resources), | 563 | .num_resources = ARRAY_SIZE(rtt_resources), |
564 | }; | 564 | }; |
diff --git a/arch/arm/mach-at91/at91sam9261_devices.c b/arch/arm/mach-at91/at91sam9261_devices.c index 48ecbeffd9b0..0bd0edf8fa3b 100644 --- a/arch/arm/mach-at91/at91sam9261_devices.c +++ b/arch/arm/mach-at91/at91sam9261_devices.c | |||
@@ -561,7 +561,7 @@ static struct resource rtt_resources[] = { | |||
561 | 561 | ||
562 | static struct platform_device at91sam9261_rtt_device = { | 562 | static struct platform_device at91sam9261_rtt_device = { |
563 | .name = "at91_rtt", | 563 | .name = "at91_rtt", |
564 | .id = -1, | 564 | .id = 0, |
565 | .resource = rtt_resources, | 565 | .resource = rtt_resources, |
566 | .num_resources = ARRAY_SIZE(rtt_resources), | 566 | .num_resources = ARRAY_SIZE(rtt_resources), |
567 | }; | 567 | }; |
diff --git a/arch/arm/mach-at91/at91sam9rl_devices.c b/arch/arm/mach-at91/at91sam9rl_devices.c index 2a0abd25e773..8982b02c8b46 100644 --- a/arch/arm/mach-at91/at91sam9rl_devices.c +++ b/arch/arm/mach-at91/at91sam9rl_devices.c | |||
@@ -423,7 +423,7 @@ static struct resource rtt_resources[] = { | |||
423 | 423 | ||
424 | static struct platform_device at91sam9rl_rtt_device = { | 424 | static struct platform_device at91sam9rl_rtt_device = { |
425 | .name = "at91_rtt", | 425 | .name = "at91_rtt", |
426 | .id = -1, | 426 | .id = 0, |
427 | .resource = rtt_resources, | 427 | .resource = rtt_resources, |
428 | .num_resources = ARRAY_SIZE(rtt_resources), | 428 | .num_resources = ARRAY_SIZE(rtt_resources), |
429 | }; | 429 | }; |