diff options
Diffstat (limited to 'arch/arm/mach-omap1/clock.c')
| -rw-r--r-- | arch/arm/mach-omap1/clock.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/mach-omap1/clock.c b/arch/arm/mach-omap1/clock.c index a9ee06b6cb4..b15d4ee7efa 100644 --- a/arch/arm/mach-omap1/clock.c +++ b/arch/arm/mach-omap1/clock.c @@ -24,11 +24,12 @@  #include <plat/cpu.h>  #include <plat/usb.h>  #include <plat/clock.h> -#include <plat/sram.h>  #include <plat/clkdev_omap.h>  #include <mach/hardware.h> +#include "../plat-omap/sram.h" +  #include "iomap.h"  #include "clock.h"  #include "opp.h" @@ -587,8 +588,8 @@ void omap1_clk_disable_unused(struct clk *clk)  	/* Clocks in the DSP domain need api_ck. Just assume bootloader  	 * has not enabled any DSP clocks */  	if (clk->enable_reg == DSP_IDLECT2) { -		printk(KERN_INFO "Skipping reset check for DSP domain " -		       "clock \"%s\"\n", clk->name); +		pr_info("Skipping reset check for DSP domain clock \"%s\"\n", +			clk->name);  		return;  	}  |