Skip to content

Commit

Permalink
net: hdlc_cisco: remove redundant space
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Peng Li authored and David S. Miller committed Jun 3, 2021
1 parent 4e38d51 commit 4a20f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wan/hdlc_cisco.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4a20f8e

Please sign in to comment.