diff options
Diffstat (limited to 'arch/arm/mach-omap1/clock.c')
-rw-r--r-- | arch/arm/mach-omap1/clock.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-omap1/clock.c b/arch/arm/mach-omap1/clock.c index 638490e62d5f..f8e12946862c 100644 --- a/arch/arm/mach-omap1/clock.c +++ b/arch/arm/mach-omap1/clock.c | |||
@@ -496,7 +496,7 @@ static int omap1_clk_enable_generic(struct clk *clk) | |||
496 | } | 496 | } |
497 | } | 497 | } |
498 | 498 | ||
499 | return 0; | 499 | return; |
500 | } | 500 | } |
501 | 501 | ||
502 | static void omap1_clk_disable_generic(struct clk *clk) | 502 | static void omap1_clk_disable_generic(struct clk *clk) |
@@ -654,7 +654,8 @@ int __init omap1_clk_init(void) | |||
654 | /* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */ | 654 | /* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */ |
655 | reg = omap_readw(SOFT_REQ_REG) & (1 << 4); | 655 | reg = omap_readw(SOFT_REQ_REG) & (1 << 4); |
656 | omap_writew(reg, SOFT_REQ_REG); | 656 | omap_writew(reg, SOFT_REQ_REG); |
657 | omap_writew(0, SOFT_REQ_REG2); | 657 | if (!cpu_is_omap15xx()) |
658 | omap_writew(0, SOFT_REQ_REG2); | ||
658 | 659 | ||
659 | clk_init(&omap1_clk_functions); | 660 | clk_init(&omap1_clk_functions); |
660 | 661 | ||