diff options
author | Peng Li | 2021-06-02 19:01:15 +0800 |
---|---|---|
committer | David S. Miller | 2021-06-03 13:27:36 -0700 |
commit | 4e38d514788c218306e35a63d147b721132a5466 (patch) | |
tree | e639793b27136ea848688f57c319a9bbc0e04608 | |
parent | 05ff5525aa824c433fbd47e790f181055f0127ae (diff) |
net: hdlc_cisco: add blank line after declaration
This patch fixes the checkpatch error about missing a blank line
after declarations.
Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/wan/hdlc_cisco.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wan/hdlc_cisco.c b/drivers/net/wan/hdlc_cisco.c index 0d29a2ceecdb..d33771104326 100644 --- a/drivers/net/wan/hdlc_cisco.c +++ b/drivers/net/wan/hdlc_cisco.c @@ -214,6 +214,7 @@ static int cisco_rx(struct sk_buff *skb) st->last_poll = jiffies; if (!st->up) { u32 sec, min, hrs, days; + sec = ntohl(cisco_data->time) / 1000; min = sec / 60; sec -= min * 60; hrs = min / 60; min -= hrs * 60; |