Commit f43750ec authored by Ben Dooks's avatar Ben Dooks Committed by Russell King

[ARM PATCH] 2044/1: S3C2410 - missing IRQ_TICK from RTC resources

Patch from Ben Dooks

Fixes missing IRQ_TICK from RTC resources
parent a2132900
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* Modifications: * Modifications:
* 21-Aug-2004 BJD Added IRQ_TICK to RTC resources
* 18-Aug-2004 BJD Created initial version * 18-Aug-2004 BJD Created initial version
*/ */
...@@ -229,8 +230,12 @@ static struct resource s3c_rtc_resource[] = { ...@@ -229,8 +230,12 @@ static struct resource s3c_rtc_resource[] = {
.start = IRQ_RTC, .start = IRQ_RTC,
.end = IRQ_RTC, .end = IRQ_RTC,
.flags = IORESOURCE_IRQ, .flags = IORESOURCE_IRQ,
},
[2] = {
.start = IRQ_TICK,
.end = IRQ_TICK,
.flags = IORESOURCE_IRQ
} }
}; };
struct platform_device s3c_device_rtc = { struct platform_device s3c_device_rtc = {
......
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