net: hdlc_cisco: remove redundant space
authorPeng Li <lipeng321@huawei.com>
Wed, 2 Jun 2021 11:01:16 +0000 (19:01 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 3 Jun 2021 20:27:36 +0000 (13:27 -0700)
Space prohibited between function name and open parenthesis '('.

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>
drivers/net/wan/hdlc_cisco.c

index d337711043269d55b1541e120b28d5b50d0c91b2..349ca18088e880647aa8ffd4e51edbe7a61b4404 100644 (file)
@@ -174,7 +174,7 @@ static int cisco_rx(struct sk_buff *skb)
                cisco_data = (struct cisco_packet *)(skb->data + sizeof
                                                    (struct hdlc_header));
 
-               switch (ntohl (cisco_data->type)) {
+               switch (ntohl(cisco_data->type)) {
                case CISCO_ADDR_REQ: /* Stolen from syncppp.c :-) */
                        rcu_read_lock();
                        in_dev = __in_dev_get_rcu(dev);