projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1de83e9
)
sh: fix rtc_resources setup for sh770x
author
Rafael Ignacio Zurita
<rizurita@yahoo.com>
Tue, 19 Feb 2008 01:32:58 +0000
(22:32 -0300)
committer
Paul Mundt
<lethal@linux-sh.org>
Tue, 26 Feb 2008 05:08:29 +0000
(14:08 +0900)
Fix the RTC resources setup for sh770x. Whit these proper
start values RTC driver (drivers/rtc/rtc-sh.c) works.
Signed-off-by: Rafael Ignacio Zurita <rizurita@yahoo.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/cpu/sh3/setup-sh770x.c
patch
|
blob
|
history
diff --git
a/arch/sh/kernel/cpu/sh3/setup-sh770x.c
b/arch/sh/kernel/cpu/sh3/setup-sh770x.c
index 969804bb523bab00964e6303de157e26f06b0096..9066ed78e28321ed1f9feecbd136b5c1b2f33e3e 100644
(file)
--- a/
arch/sh/kernel/cpu/sh3/setup-sh770x.c
+++ b/
arch/sh/kernel/cpu/sh3/setup-sh770x.c
@@
-123,15
+123,15
@@
static struct resource rtc_resources[] = {
.flags = IORESOURCE_IO,
},
[1] = {
- .start = 2
0
,
+ .start = 2
1
,
.flags = IORESOURCE_IRQ,
},
[2] = {
- .start = 2
1
,
+ .start = 2
2
,
.flags = IORESOURCE_IRQ,
},
[3] = {
- .start = 2
2
,
+ .start = 2
0
,
.flags = IORESOURCE_IRQ,
},
};