OSDN Git Service

netfilter: xt_IDLETIMER: clean up some indenting
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 25 Feb 2020 06:42:22 +0000 (09:42 +0300)
committerPablo Neira Ayuso <pablo@netfilter.org>
Sun, 15 Mar 2020 14:20:17 +0000 (15:20 +0100)
These lines were indented wrong so Smatch complained.
net/netfilter/xt_IDLETIMER.c:81 idletimer_tg_show() warn: inconsistent indenting

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/xt_IDLETIMER.c

index d620bbf..75bd0e5 100644 (file)
@@ -77,9 +77,8 @@ static ssize_t idletimer_tg_show(struct device *dev,
                        ktimespec = ktime_to_timespec64(expires_alarm);
                        time_diff = ktimespec.tv_sec;
                } else {
-               expires = timer->timer.expires;
-                       time_diff = jiffies_to_msecs(
-                                               expires - jiffies) / 1000;
+                       expires = timer->timer.expires;
+                       time_diff = jiffies_to_msecs(expires - jiffies) / 1000;
                }
        }
 
@@ -216,7 +215,7 @@ static int idletimer_tg_create_v1(struct idletimer_tg_info_v1 *info)
        kobject_uevent(idletimer_tg_kobj,KOBJ_ADD);
 
        list_add(&info->timer->entry, &idletimer_tg_list);
-               pr_debug("timer type value is %u", info->timer_type);
+       pr_debug("timer type value is %u", info->timer_type);
        info->timer->timer_type = info->timer_type;
        info->timer->refcnt = 1;