===================================================================
@@ -78,7 +78,7 @@
static int sr_clk_enable(struct omap_sr *sr)
{
if (clk_enable(sr->clk) != 0) {
- printk(KERN_ERR "Could not enable %s\n", sr->clk->name);
+ pr_err("Could not enable %s\n", sr->clk->name);
return -1;
}
@@ -170,7 +170,7 @@
sr->clk_length = SRCLKLENGTH_38MHZ_SYSCLK;
break;
default :
- printk(KERN_ERR "Invalid sysclk value: %d\n", sys_clk_speed);
+ pr_err("Invalid sysclk value: %d\n", sys_clk_speed);
break;
}
}
@@ -409,7 +409,7 @@
while ((vc_bypass_value & OMAP3430_VALID) != 0x0) {
loop_cnt++;
if (retries_cnt > 10) {
- printk(KERN_INFO "Loop count exceeded in check SR I2C"
+ pr_info("Loop count exceeded in check SR I2C"
"write\n");
return SR_FAIL;
}
@@ -474,7 +474,7 @@
}
if (nvalue_reciprocal == 0) {
- printk(KERN_NOTICE "OPP%d doesn't support SmartReflex\n",
+ pr_notice("OPP%d doesn't support SmartReflex\n",
target_opp_no);
return SR_FALSE;
}
@@ -563,12 +563,12 @@
}
if (sr->is_autocomp_active == 1)
- printk(KERN_WARNING "SR%d: VDD autocomp is already active\n",
+ pr_warning("SR%d: VDD autocomp is already active\n",
srid);
sr->is_autocomp_active = 1;
if (!sr_enable(sr, target_opp_no)) {
- printk(KERN_WARNING "SR%d: VDD autocomp not activated\n", srid);
+ pr_warning("SR%d: VDD autocomp not activated\n", srid);
sr->is_autocomp_active = 0;
if (sr->is_sr_reset == 1)
sr_clk_disable(sr);
@@ -593,7 +593,7 @@
sr_reset_voltage(srid);
return SR_TRUE;
} else {
- printk(KERN_WARNING "SR%d: VDD autocomp is not active\n",
+ pr_warning("SR%d: VDD autocomp is not active\n",
srid);
return SR_FALSE;
}
@@ -709,7 +709,7 @@
while ((vc_bypass_value & OMAP3430_VALID) != 0x0) {
loop_cnt++;
if (retries_cnt > 10) {
- printk(KERN_INFO "Loop count exceeded in check SR I2C"
+ pr_info("Loop count exceeded in check SR I2C"
"write\n");
return SR_FAIL;
}
@@ -749,7 +749,7 @@
unsigned short value;
if (sscanf(buf, "%hu", &value) != 1 || (value > 1)) {
- printk(KERN_ERR "sr_vdd1_autocomp: Invalid value\n");
+ pr_err("sr_vdd1_autocomp: Invalid value\n");
return -EINVAL;
}
@@ -787,7 +787,7 @@
unsigned short value;
if (sscanf(buf, "%hu", &value) != 1 || (value > 1)) {
- printk(KERN_ERR "sr_vdd2_autocomp: Invalid value\n");
+ pr_err("sr_vdd2_autocomp: Invalid value\n");
return -EINVAL;
}
@@ -839,15 +839,15 @@
sr_set_nvalues(&sr2);
sr_configure_vp(SR2);
- printk(KERN_INFO "SmartReflex driver initialized\n");
+ pr_info("SmartReflex driver initialized\n");
ret = sysfs_create_file(power_kobj, &sr_vdd1_autocomp.attr);
if (ret)
- printk(KERN_ERR "sysfs_create_file failed: %d\n", ret);
+ pr_err("sysfs_create_file failed: %d\n", ret);
ret = sysfs_create_file(power_kobj, &sr_vdd2_autocomp.attr);
if (ret)
- printk(KERN_ERR "sysfs_create_file failed: %d\n", ret);
+ pr_err("sysfs_create_file failed: %d\n", ret);
return 0;
}