]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
platform/x86: intel_mid_powerbtn: Join string literals
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 19 Jan 2017 16:39:47 +0000 (18:39 +0200)
committerDarren Hart <dvhart@linux.intel.com>
Sat, 4 Feb 2017 01:47:24 +0000 (02:47 +0100)
There is no need and bad practice for debugging to split string
literals. Join them back.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
drivers/platform/x86/intel_mid_powerbtn.c

index 12fbf400f22873b345c3f8f15f99b01bf5a7ccfd..9b718cf237eeabd60bf6ed6d7fbda10edecbad5a 100644 (file)
@@ -130,8 +130,8 @@ static irqreturn_t mid_pb_isr(int irq, void *dev_id)
 
        ret = ddata->pbstat(ddata, &value);
        if (ret < 0) {
-               dev_err(input->dev.parent, "Read error %d while reading"
-                              " MSIC_PB_STATUS\n", ret);
+               dev_err(input->dev.parent,
+                       "Read error %d while reading MSIC_PB_STATUS\n", ret);
        } else {
                input_event(input, EV_KEY, KEY_POWER, value);
                input_sync(input);
@@ -204,15 +204,15 @@ static int mid_pb_probe(struct platform_device *pdev)
        error = devm_request_threaded_irq(&pdev->dev, irq, NULL, mid_pb_isr,
                                          IRQF_ONESHOT, DRIVER_NAME, ddata);
        if (error) {
-               dev_err(&pdev->dev, "Unable to request irq %d for MID power"
-                               "button\n", irq);
+               dev_err(&pdev->dev,
+                       "Unable to request irq %d for MID power button\n", irq);
                return error;
        }
 
        error = input_register_device(input);
        if (error) {
-               dev_err(&pdev->dev, "Unable to register input dev, error "
-                               "%d\n", error);
+               dev_err(&pdev->dev,
+                       "Unable to register input dev, error %d\n", error);
                return error;
        }
 
@@ -220,8 +220,9 @@ static int mid_pb_probe(struct platform_device *pdev)
 
        error = ddata->ack(ddata);
        if (error) {
-               dev_err(&pdev->dev, "Unable to clear power button interrupt, "
-                               "error: %d\n", error);
+               dev_err(&pdev->dev,
+                       "Unable to clear power button interrupt, error: %d\n",
+                       error);
                return error;
        }