diff options
author | Rafael Ignacio Zurita <rizurita@yahoo.com> | 2008-02-18 22:32:58 -0300 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-02-26 14:08:29 +0900 |
commit | b7fd095602468ee501c5bcc3f9ca788cb3834096 (patch) | |
tree | 1097ed3a532b84e4508ae9f07789de374d57983f /arch | |
parent | 1de83e94e6d4af22614c100b0c69716ab6eaa870 (diff) | |
download | op-kernel-dev-b7fd095602468ee501c5bcc3f9ca788cb3834096.zip op-kernel-dev-b7fd095602468ee501c5bcc3f9ca788cb3834096.tar.gz |
sh: fix rtc_resources setup for sh770x
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/cpu/sh3/setup-sh770x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/kernel/cpu/sh3/setup-sh770x.c b/arch/sh/kernel/cpu/sh3/setup-sh770x.c index 969804b..9066ed7 100644 --- 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 = 20, + .start = 21, .flags = IORESOURCE_IRQ, }, [2] = { - .start = 21, + .start = 22, .flags = IORESOURCE_IRQ, }, [3] = { - .start = 22, + .start = 20, .flags = IORESOURCE_IRQ, }, }; |