浏览代码

ARM: shmobile: r8a7791: Correct SYSCIER value

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: 5f6108bb9643 ("ARM: shmobile: r8a7791 SYSC setup code")
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Simon Horman 10 年之前
父节点
当前提交
78420b5dca
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm/mach-shmobile/pm-r8a7791.c

+ 1 - 1
arch/arm/mach-shmobile/pm-r8a7791.c

@@ -33,7 +33,7 @@ static void __init r8a7791_sysc_init(void)
 	void __iomem *base = rcar_sysc_init(0xe6180000);
 	void __iomem *base = rcar_sysc_init(0xe6180000);
 
 
 	/* enable all interrupt sources, but do not use interrupt handler */
 	/* enable all interrupt sources, but do not use interrupt handler */
-	iowrite32(0x0131000e, base + SYSCIER);
+	iowrite32(0x00111003, base + SYSCIER);
 	iowrite32(0, base + SYSCIMR);
 	iowrite32(0, base + SYSCIMR);
 }
 }