staging: media: lirc: Add space around binary operators
authorNamrata A Shettar <namrataashettar@gmail.com>
Sat, 24 Sep 2016 16:00:57 +0000 (21:30 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Sep 2016 11:17:59 +0000 (13:17 +0200)
Add space around binary operators to resolve checkpatch issue.

Signed-off-by: Namrata A Shettar <namrataashettar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/lirc/lirc_parallel.c

index 3906ac6..64d99ec 100644 (file)
@@ -163,12 +163,12 @@ static unsigned int init_lirc_timer(void)
        if (count >= 1000 && timeelapsed > 0) {
                if (default_timer == 0) {
                        /* autodetect timer */
-                       newtimer = (1000000*count)/timeelapsed;
+                       newtimer = (1000000 * count) / timeelapsed;
                        pr_info("%u Hz timer detected\n", newtimer);
                        return newtimer;
                }
-               newtimer = (1000000*count)/timeelapsed;
-               if (abs(newtimer - default_timer) > default_timer/10) {
+               newtimer = (1000000 * count) / timeelapsed;
+               if (abs(newtimer - default_timer) > default_timer / 10) {
                        /* bad timer */
                        pr_notice("bad timer: %u Hz\n", newtimer);
                        pr_notice("using default timer: %u Hz\n",