Skip to content

Commit

Permalink
ARM: shmobile: r8a7791: Correct SYSCIER value
Browse files Browse the repository at this point in the history
Set the SYSCIER as per the values indicated in the documentation.
The value previously used appears to been copied from the r8a7779
implementation but on closer inspection is not correct for the r8a7791.

Fixes: 5f6108b ("ARM: shmobile: r8a7791 SYSC setup code")
Reported-by: Geert Uytterhoeven <[email protected]>
Acked-by: Geert Uytterhoeven <[email protected]>
Signed-off-by: Simon Horman <[email protected]>
  • Loading branch information
horms committed Mar 16, 2015
1 parent ee72f6a commit 78420b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-shmobile/pm-r8a7791.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static void __init r8a7791_sysc_init(void)
void __iomem *base = rcar_sysc_init(0xe6180000);

/* enable all interrupt sources, but do not use interrupt handler */
iowrite32(0x0131000e, base + SYSCIER);
iowrite32(0x00111003, base + SYSCIER);
iowrite32(0, base + SYSCIMR);
}

Expand Down

0 comments on commit 78420b5

Please sign in to comment.