diff options
| author | Ben Dooks <ben-linux@org.rmk.(none)> | 2004-08-25 19:18:55 +0100 |
|---|---|---|
| committer | Russell King <rmk@flint.arm.linux.org.uk> | 2004-08-25 19:18:55 +0100 |
| commit | f43750ecd84afd02d532849355f0c70c26abda89 (patch) | |
| tree | 6200212aba450fb9a03098907a91f4d87a923580 | |
| parent | a2132900dfefa8707084d66812be7dd7f9671a4c (diff) | |
[ARM PATCH] 2044/1: S3C2410 - missing IRQ_TICK from RTC resources
Patch from Ben Dooks
Fixes missing IRQ_TICK from RTC resources
| -rw-r--r-- | arch/arm/mach-s3c2410/devs.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/devs.c b/arch/arm/mach-s3c2410/devs.c index e1c44d656a36..f6316bcef90c 100644 --- a/arch/arm/mach-s3c2410/devs.c +++ b/arch/arm/mach-s3c2410/devs.c @@ -10,6 +10,7 @@ * published by the Free Software Foundation. * * Modifications: + * 21-Aug-2004 BJD Added IRQ_TICK to RTC resources * 18-Aug-2004 BJD Created initial version */ @@ -229,8 +230,12 @@ static struct resource s3c_rtc_resource[] = { .start = IRQ_RTC, .end = IRQ_RTC, .flags = IORESOURCE_IRQ, + }, + [2] = { + .start = IRQ_TICK, + .end = IRQ_TICK, + .flags = IORESOURCE_IRQ } - }; struct platform_device s3c_device_rtc = { |
