[PATCH net-next 6/6] net: hdlc_cisco: remove redundant space

From: Guangbin Huang
Date: Wed Jun 02 2021 - 07:04:47 EST


From: Peng Li <lipeng321@xxxxxxxxxx>

Space prohibited between function name and open parenthesis '('.

Signed-off-by: Peng Li <lipeng321@xxxxxxxxxx>
Signed-off-by: Guangbin Huang <huangguangbin2@xxxxxxxxxx>
---
drivers/net/wan/hdlc_cisco.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wan/hdlc_cisco.c b/drivers/net/wan/hdlc_cisco.c
index d337711..349ca18 100644
--- a/drivers/net/wan/hdlc_cisco.c
+++ b/drivers/net/wan/hdlc_cisco.c
@@ -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);
--
2.8.1