OSDN Git Service

staging: rtl8192e: Fix SPACING error
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Sun, 31 May 2015 18:19:53 +0000 (20:19 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 31 May 2015 21:33:23 +0000 (06:33 +0900)
Fix SPACING error in rtl8192_hw_to_sleep().

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_ps.c

index f6eb989..404cb83 100644 (file)
@@ -101,7 +101,7 @@ void rtl8192_hw_to_sleep(struct net_device *dev, u64 time)
        time -= msecs_to_jiffies(8 + 16 + 7);
 
        timeout = jiffies + msecs_to_jiffies(MIN_SLEEP_TIME);
-       if (time_before((unsigned long)time,timeout)) {
+       if (time_before((unsigned long)time, timeout)) {
                spin_unlock_irqrestore(&priv->ps_lock, flags);
                netdev_info(dev, "too short to sleep::%lld < %ld\n",
                            time - jiffies, msecs_to_jiffies(MIN_SLEEP_TIME));