input: mms134s: remove unnecessary KERN log level from pr_* functions 29/190429/1
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Tue, 2 Oct 2018 01:40:22 +0000 (10:40 +0900)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Tue, 2 Oct 2018 01:40:30 +0000 (10:40 +0900)
Remove unnecessary KERN log level from pr_* functions.

Change-Id: If97b8c96d0f011b0b4f6a7fd24dd91fe819123c0
Reported-by: Insun Pyo <insun.pyo@samsung.com>
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
drivers/input/touchscreen/mms134s/mms134s.c

index 883ffdd..d192bb8 100644 (file)
@@ -74,25 +74,25 @@ static int mms_setup_power(struct mms_info *info, bool onoff)
                regulator_set_voltage(touch_regulator_1v8, 1800000, 1800000);
                ret = regulator_enable(touch_regulator_1v8);
                if (ret) {
-                       pr_info(KERN_ERR "%s: touch_regulator_1v8 enable failed (%d)\n",__func__, ret);
+                       pr_info("%s: touch_regulator_1v8 enable failed (%d)\n",__func__, ret);
                }
 
                regulator_set_voltage(touch_regulator_3v3, 3000000, 3000000);
                ret = regulator_enable(touch_regulator_3v3);
                if (ret) {
-                       pr_info(KERN_ERR "%s: touch_regulator_3v3 enable failed (%d)\n",__func__, ret);
+                       pr_info("%s: touch_regulator_3v3 enable failed (%d)\n",__func__, ret);
                                                                                                                                                                                                                                }
        }
        else
        {
                ret = regulator_disable(touch_regulator_1v8);
                if (ret) {
-                       pr_info(KERN_ERR "%s: touch_regulator_3v0 disable failed (%d)\n",__func__, ret);
+                       pr_info("%s: touch_regulator_3v0 disable failed (%d)\n",__func__, ret);
                }
 
                ret = regulator_disable(touch_regulator_3v3);
                if (ret) {
-                       pr_info(KERN_ERR "%s: touch_regulator_3v0 disable failed (%d)\n",__func__, ret);
+                       pr_info("%s: touch_regulator_3v0 disable failed (%d)\n",__func__, ret);
                                                                                                                                                }
        }