Commit b3b1cc3b authored by Felipe Balbi's avatar Felipe Balbi Committed by Greg Kroah-Hartman

USB: musb: move two printk to dev_err

trivial cleanup, no functional changes.
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 195e9e46
...@@ -1696,7 +1696,7 @@ musb_vbus_store(struct device *dev, struct device_attribute *attr, ...@@ -1696,7 +1696,7 @@ musb_vbus_store(struct device *dev, struct device_attribute *attr,
unsigned long val; unsigned long val;
if (sscanf(buf, "%lu", &val) < 1) { if (sscanf(buf, "%lu", &val) < 1) {
printk(KERN_ERR "Invalid VBUS timeout ms value\n"); dev_err(dev, "Invalid VBUS timeout ms value\n");
return -EINVAL; return -EINVAL;
} }
...@@ -1746,7 +1746,7 @@ musb_srp_store(struct device *dev, struct device_attribute *attr, ...@@ -1746,7 +1746,7 @@ musb_srp_store(struct device *dev, struct device_attribute *attr,
if (sscanf(buf, "%hu", &srp) != 1 if (sscanf(buf, "%hu", &srp) != 1
|| (srp != 1)) { || (srp != 1)) {
printk(KERN_ERR "SRP: Value must be 1\n"); dev_err(dev, "SRP: Value must be 1\n");
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment