[MIPS] Fix pb1500 reg B access
authorYoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Mon, 28 May 2007 14:26:56 +0000 (23:26 +0900)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 26 Jun 2007 17:57:33 +0000 (19:57 +0200)
au_readl() is correct here.

Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/au1000/pb1500/board_setup.c

index 0ffdb4fd575b803369e99e64cff34ef98a398a0d..c9b655616fb38f38ebd656242cb1a9c84f287e22 100644 (file)
@@ -125,7 +125,7 @@ void __init board_setup(void)
                au_writel((au_readl(0xac000028) | 0x20), 0xac000028);
        }
        /* Put the clock in BCD mode */
-       if (readl(0xac00002C) & 0x4) { /* reg B */
+       if (au_readl(0xac00002C) & 0x4) { /* reg B */
                au_writel(au_readl(0xac00002c) & ~0x4, 0xac00002c);
                au_sync();
        }