Skip to content

Commit

Permalink
ARM: OMAP2: Remove unnecessary KERN_* in omap_phy_internal.c
Browse files Browse the repository at this point in the history
This patch remove unnecessary KERN_INFO and KERN_ERR from omap_phy_internal.c.
Add pr_fmt.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Masanari Iida authored and Tony Lindgren committed Nov 6, 2014
1 parent e7e42b9 commit d008d8e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions arch/arm/mach-omap2/omap_phy_internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
*
*/

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/types.h>
#include <linux/delay.h>
#include <linux/clk.h>
Expand Down Expand Up @@ -97,13 +99,13 @@ void am35x_musb_phy_power(u8 on)

omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);

pr_info(KERN_INFO "Waiting for PHY clock good...\n");
pr_info("Waiting for PHY clock good...\n");
while (!(omap_ctrl_readl(AM35XX_CONTROL_DEVCONF2)
& CONF2_PHYCLKGD)) {
cpu_relax();

if (time_after(jiffies, timeout)) {
pr_err(KERN_ERR "musb PHY clock good timed out\n");
pr_err("musb PHY clock good timed out\n");
break;
}
}
Expand Down Expand Up @@ -145,7 +147,7 @@ void am35x_set_mode(u8 musb_mode)
devconf2 |= CONF2_NO_OVERRIDE;
break;
default:
pr_info(KERN_INFO "Unsupported mode %u\n", musb_mode);
pr_info("Unsupported mode %u\n", musb_mode);
}

omap_ctrl_writel(devconf2, AM35XX_CONTROL_DEVCONF2);
Expand Down

0 comments on commit d008d8e

Please sign in to comment.