Merge branch 'for-rmk' of git://linux-arm.org/linux-2.6

This commit is contained in:
Russell King
2009-11-10 23:37:21 +00:00
12 changed files with 146 additions and 9 deletions

View File

@@ -37,6 +37,10 @@ void __init scu_enable(void __iomem *scu_base)
u32 scu_ctrl;
scu_ctrl = __raw_readl(scu_base + SCU_CTRL);
/* already enabled? */
if (scu_ctrl & 1)
return;
scu_ctrl |= 1;
__raw_writel(scu_ctrl, scu_base + SCU_CTRL);