提交 1cbb3a9a 编写于 作者: B Benoit Cousson

OMAP: mux: Replace printk with pr_xxx macros

Replace all the printk(KERN_XXX... with pr_xxx macros.
Signed-off-by: NBenoit Cousson <b-cousson@ti.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
上级 e53beacd
...@@ -102,13 +102,13 @@ int __init omap_mux_init_gpio(int gpio, int val) ...@@ -102,13 +102,13 @@ int __init omap_mux_init_gpio(int gpio, int val)
} }
if (found == 0) { if (found == 0) {
printk(KERN_ERR "mux: Could not set gpio%i\n", gpio); pr_err("mux: Could not set gpio%i\n", gpio);
return -ENODEV; return -ENODEV;
} }
if (found > 1) { if (found > 1) {
printk(KERN_INFO "mux: Multiple gpio paths (%d) for gpio%i\n", pr_info("mux: Multiple gpio paths (%d) for gpio%i\n",
found, gpio); found, gpio);
return -EINVAL; return -EINVAL;
} }
...@@ -118,8 +118,8 @@ int __init omap_mux_init_gpio(int gpio, int val) ...@@ -118,8 +118,8 @@ int __init omap_mux_init_gpio(int gpio, int val)
mux_mode |= OMAP_MUX_MODE3; mux_mode |= OMAP_MUX_MODE3;
else else
mux_mode |= OMAP_MUX_MODE4; mux_mode |= OMAP_MUX_MODE4;
printk(KERN_DEBUG "mux: Setting signal %s.gpio%i 0x%04x -> 0x%04x\n", pr_debug("mux: Setting signal %s.gpio%i 0x%04x -> 0x%04x\n",
gpio_mux->muxnames[0], gpio, old_mode, mux_mode); gpio_mux->muxnames[0], gpio, old_mode, mux_mode);
omap_mux_write(mux_mode, gpio_mux->reg_offset); omap_mux_write(mux_mode, gpio_mux->reg_offset);
return 0; return 0;
...@@ -161,9 +161,9 @@ int __init omap_mux_init_signal(const char *muxname, int val) ...@@ -161,9 +161,9 @@ int __init omap_mux_init_signal(const char *muxname, int val)
old_mode = omap_mux_read(m->reg_offset); old_mode = omap_mux_read(m->reg_offset);
mux_mode = val | i; mux_mode = val | i;
printk(KERN_DEBUG "mux: Setting signal " pr_debug("mux: Setting signal "
"%s.%s 0x%04x -> 0x%04x\n", "%s.%s 0x%04x -> 0x%04x\n",
m0_entry, muxname, old_mode, mux_mode); m0_entry, muxname, old_mode, mux_mode);
omap_mux_write(mux_mode, m->reg_offset); omap_mux_write(mux_mode, m->reg_offset);
found++; found++;
} }
...@@ -174,12 +174,12 @@ int __init omap_mux_init_signal(const char *muxname, int val) ...@@ -174,12 +174,12 @@ int __init omap_mux_init_signal(const char *muxname, int val)
return 0; return 0;
if (found > 1) { if (found > 1) {
printk(KERN_ERR "mux: Multiple signal paths (%i) for %s\n", pr_err("mux: Multiple signal paths (%i) for %s\n",
found, muxname); found, muxname);
return -EINVAL; return -EINVAL;
} }
printk(KERN_ERR "mux: Could not set signal %s\n", muxname); pr_err("mux: Could not set signal %s\n", muxname);
return -ENODEV; return -ENODEV;
} }
...@@ -462,8 +462,8 @@ static void __init omap_mux_package_fixup(struct omap_mux *p, ...@@ -462,8 +462,8 @@ static void __init omap_mux_package_fixup(struct omap_mux *p,
s++; s++;
} }
if (!found) if (!found)
printk(KERN_ERR "mux: Unknown entry offset 0x%x\n", pr_err("mux: Unknown entry offset 0x%x\n",
p->reg_offset); p->reg_offset);
p++; p++;
} }
} }
...@@ -487,8 +487,8 @@ static void __init omap_mux_package_init_balls(struct omap_ball *b, ...@@ -487,8 +487,8 @@ static void __init omap_mux_package_init_balls(struct omap_ball *b,
s++; s++;
} }
if (!found) if (!found)
printk(KERN_ERR "mux: Unknown ball offset 0x%x\n", pr_err("mux: Unknown ball offset 0x%x\n",
b->reg_offset); b->reg_offset);
b++; b++;
} }
} }
...@@ -615,7 +615,7 @@ u16 omap_mux_get_gpio(int gpio) ...@@ -615,7 +615,7 @@ u16 omap_mux_get_gpio(int gpio)
offset = omap_mux_get_by_gpio(gpio); offset = omap_mux_get_by_gpio(gpio);
if (offset == OMAP_MUX_TERMINATOR) { if (offset == OMAP_MUX_TERMINATOR) {
printk(KERN_ERR "mux: Could not get gpio%i\n", gpio); pr_err("mux: Could not get gpio%i\n", gpio);
return offset; return offset;
} }
...@@ -629,7 +629,7 @@ void omap_mux_set_gpio(u16 val, int gpio) ...@@ -629,7 +629,7 @@ void omap_mux_set_gpio(u16 val, int gpio)
offset = omap_mux_get_by_gpio(gpio); offset = omap_mux_get_by_gpio(gpio);
if (offset == OMAP_MUX_TERMINATOR) { if (offset == OMAP_MUX_TERMINATOR) {
printk(KERN_ERR "mux: Could not set gpio%i\n", gpio); pr_err("mux: Could not set gpio%i\n", gpio);
return; return;
} }
...@@ -687,7 +687,7 @@ static void __init omap_mux_init_list(struct omap_mux *superset) ...@@ -687,7 +687,7 @@ static void __init omap_mux_init_list(struct omap_mux *superset)
entry = omap_mux_list_add(superset); entry = omap_mux_list_add(superset);
if (!entry) { if (!entry) {
printk(KERN_ERR "mux: Could not add entry\n"); pr_err("mux: Could not add entry\n");
return; return;
} }
superset++; superset++;
...@@ -738,7 +738,7 @@ int __init omap_mux_init(u32 mux_pbase, u32 mux_size, ...@@ -738,7 +738,7 @@ int __init omap_mux_init(u32 mux_pbase, u32 mux_size,
mux_phys = mux_pbase; mux_phys = mux_pbase;
mux_base = ioremap(mux_pbase, mux_size); mux_base = ioremap(mux_pbase, mux_size);
if (!mux_base) { if (!mux_base) {
printk(KERN_ERR "mux: Could not ioremap\n"); pr_err("mux: Could not ioremap\n");
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册