From: Kristoffer E. <kri...@gm...> - 2007-08-24 14:39:36
|
Greetings, Shortlog: HD64461 was setup to use IRQ 80->95 with the CF getting (80+13) 93. Since we now start OFFCHIP_IRQ at 64 we need to set CF to use (64+13) instead, meaning IRQ 77. Signed-off-by: Kristoffer Ericson <Kri...@gm...> diff --git a/arch/sh/boards/hp6xx/setup.c b/arch/sh/boards/hp6xx/setup.c index 7ae7089..ac527a8 100644 --- a/arch/sh/boards/hp6xx/setup.c +++ b/arch/sh/boards/hp6xx/setup.c @@ -34,7 +34,7 @@ static struct resource cf_ide_resources[] = { .flags = IORESOURCE_MEM, }, [2] = { - .start = 93, + .start = 77, .flags = IORESOURCE_IRQ, }, }; -- Kristoffer Ericson <Kri...@Gm...> |