From: Sean Young Date: Thu, 19 Jan 2017 21:33:49 +0000 (-0200) Subject: [media] rc: remove excessive spaces from error message X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8caebcdc53c9716ed6ae493aa6c0b1d3a67f0d5d;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [media] rc: remove excessive spaces from error message 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 Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c index 075d7a942e32..2424946740e6 100644 --- a/drivers/media/rc/rc-main.c +++ b/drivers/media/rc/rc-main.c @@ -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;