]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
[media] rc: remove excessive spaces from error message
authorSean Young <sean@mess.org>
Thu, 19 Jan 2017 21:33:49 +0000 (19:33 -0200)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 31 Jan 2017 09:29:30 +0000 (07:29 -0200)
The current message has some wanted spaces on it:
rc_core: Loaded IR protocol module ir-jvc-decoder,                      but protocol jvc still not available

Merge it into a single line.

Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/rc/rc-main.c

index 075d7a942e327788fe695f10532ffc668ec1c726..2424946740e64fb602f55a30d5f158a212cc88ce 100644 (file)
@@ -1084,8 +1084,7 @@ static void ir_raw_load_modules(u64 *protocols)
                if (!(*protocols & proto_names[i].type & ~available))
                        continue;
 
-               pr_err("Loaded IR protocol module %s, \
-                      but protocol %s still not available\n",
+               pr_err("Loaded IR protocol module %s, but protocol %s still not available\n",
                       proto_names[i].module_name,
                       proto_names[i].name);
                *protocols &= ~proto_names[i].type;