platform/x86: asus-wmi: Join string literals back
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 10 Dec 2021 16:30:07 +0000 (18:30 +0200)
committerHans de Goede <hdegoede@redhat.com>
Tue, 21 Dec 2021 18:40:36 +0000 (19:40 +0100)
For easy grepping on debug purposes join string literals back in
the messages.

No functional change.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20211210163009.19894-1-andriy.shevchenko@linux.intel.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/asus-wmi.c

index 6fa4b0b..30e0de9 100644 (file)
@@ -1154,12 +1154,10 @@ static void asus_rfkill_hotplug(struct asus_wmi *asus)
                absent = (l == 0xffffffff);
 
                if (blocked != absent) {
-                       pr_warn("BIOS says wireless lan is %s, "
-                               "but the pci device is %s\n",
+                       pr_warn("BIOS says wireless lan is %s, but the pci device is %s\n",
                                blocked ? "blocked" : "unblocked",
                                absent ? "absent" : "present");
-                       pr_warn("skipped wireless hotplug as probably "
-                               "inappropriate for this model\n");
+                       pr_warn("skipped wireless hotplug as probably inappropriate for this model\n");
                        goto out_unlock;
                }