diff options
author | Sean Young <sean@mess.org> | 2017-01-19 19:33:49 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-01-31 07:29:30 -0200 |
commit | 8caebcdc53c9716ed6ae493aa6c0b1d3a67f0d5d (patch) | |
tree | c682638fab70d0a0eb551deeb8890a1c3b2b7861 | |
parent | c9bbd5661fa85e086ee52aa5905b62d14ee8b7a3 (diff) | |
download | talos-obmc-linux-8caebcdc53c9716ed6ae493aa6c0b1d3a67f0d5d.tar.gz talos-obmc-linux-8caebcdc53c9716ed6ae493aa6c0b1d3a67f0d5d.zip |
[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 <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r-- | drivers/media/rc/rc-main.c | 3 |
1 files changed, 1 insertions, 2 deletions
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; |