From: Peng Li Date: Wed, 2 Jun 2021 11:01:15 +0000 (+0800) Subject: net: hdlc_cisco: add blank line after declaration X-Git-Tag: accepted/tizen/unified/20230118.172025~6942^2~361^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e38d514788c218306e35a63d147b721132a5466;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Guangbin Huang Signed-off-by: David S. Miller --- diff --git a/drivers/net/wan/hdlc_cisco.c b/drivers/net/wan/hdlc_cisco.c index 0d29a2c..d337711 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;