usbtmc: remove trailing spaces
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 15 Jul 2013 08:59:40 +0000 (11:59 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Jul 2013 19:01:12 +0000 (12:01 -0700)
Recent patch series introduces few trailing spaces. This patch removes them.
No functional change.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/class/usbtmc.c

index 609dbc2..92eaf9d 100644 (file)
@@ -554,14 +554,14 @@ static ssize_t usbtmc_read(struct file *filp, char __user *buf,
                                if (remaining > n_characters)
                                        remaining = n_characters;
                                /* Remove padding if it exists */
-                               if (actual > remaining) 
+                               if (actual > remaining)
                                        actual = remaining;
                        }
                        else {
                                if (this_part > n_characters)
                                        this_part = n_characters;
                                /* Remove padding if it exists */
-                               if (actual > this_part) 
+                               if (actual > this_part)
                                        actual = this_part;
                        }
 
@@ -585,7 +585,7 @@ static ssize_t usbtmc_read(struct file *filp, char __user *buf,
                        done += actual;
                }
                else  {
-                       if (actual > remaining) 
+                       if (actual > remaining)
                                actual = remaining;
 
                        remaining -= actual;