aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/mux44xx.c
diff options
context:
space:
mode:
authorDan Murphy <dmurphy@ti.com>2010-11-15 10:50:50 -0500
committerBenoit Cousson <b-cousson@ti.com>2010-11-17 06:01:54 -0500
commit032a6424aeea7333a8dafc8cc05dd10b09c62680 (patch)
tree0e63a2d865bfab15058c39b36a756c7507b68329 /arch/arm/mach-omap2/mux44xx.c
parentfc63de829bbfa3945ffd6327bd3dc88f4e643642 (diff)
OMAP: mux: Add __func__ macro to pr_xxx macros
Removed mux: and added the __func__ macro to make debugging easier. Signed-off-by: Dan Murphy <dmurphy@ti.com> Signed-off-by: Benoit Cousson <b-cousson@ti.com> Cc: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/mux44xx.c')
-rw-r--r--arch/arm/mach-omap2/mux44xx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/mux44xx.c b/arch/arm/mach-omap2/mux44xx.c
index 80335f395d28..980f11d45c79 100644
--- a/arch/arm/mach-omap2/mux44xx.c
+++ b/arch/arm/mach-omap2/mux44xx.c
@@ -1590,17 +1590,17 @@ int __init omap4_mux_init(struct omap_board_mux *board_subset, int flags)
1590 1590
1591 switch (flags & OMAP_PACKAGE_MASK) { 1591 switch (flags & OMAP_PACKAGE_MASK) {
1592 case OMAP_PACKAGE_CBL: 1592 case OMAP_PACKAGE_CBL:
1593 pr_debug("mux: OMAP4430 ES1.0 -> OMAP_PACKAGE_CBL\n"); 1593 pr_debug("%s: OMAP4430 ES1.0 -> OMAP_PACKAGE_CBL\n", __func__);
1594 package_balls_core = omap4_core_cbl_ball; 1594 package_balls_core = omap4_core_cbl_ball;
1595 core_muxmodes = omap4_core_muxmodes; 1595 core_muxmodes = omap4_core_muxmodes;
1596 break; 1596 break;
1597 case OMAP_PACKAGE_CBS: 1597 case OMAP_PACKAGE_CBS:
1598 pr_debug("mux: OMAP4430 ES2.X -> OMAP_PACKAGE_CBS\n"); 1598 pr_debug("%s: OMAP4430 ES2.X -> OMAP_PACKAGE_CBS\n", __func__);
1599 package_balls_core = omap4_core_cbs_ball; 1599 package_balls_core = omap4_core_cbs_ball;
1600 core_muxmodes = omap4_es2_core_muxmodes; 1600 core_muxmodes = omap4_es2_core_muxmodes;
1601 break; 1601 break;
1602 default: 1602 default:
1603 pr_err("mux: Unknown omap package, mux disabled\n"); 1603 pr_err("%s: Unknown omap package, mux disabled\n", __func__);
1604 return -EINVAL; 1604 return -EINVAL;
1605 } 1605 }
1606 1606