From: Peng Li <lipeng321@huawei.com>
Date: Sun, 30 May 2021 06:24:27 +0000 (+0800)
Subject: net: sealevel: fix the code style issue about "foo* bar"
X-Git-Tag: irq-urgent-2021-07-11~79^2~408^2~7
X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=8be88e3ccee49716a45972c7451b8033737fc9f0;p=users%2Fdwmw2%2Flinux.git

net: sealevel: fix the code style issue about "foo* bar"

Fix the checkpatch error as "(foo*)" should be "(foo *)".

Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---

diff --git a/drivers/net/wan/sealevel.c b/drivers/net/wan/sealevel.c
index 829e9bc01a499..465c9ace1dc7b 100644
--- a/drivers/net/wan/sealevel.c
+++ b/drivers/net/wan/sealevel.c
@@ -46,7 +46,7 @@ struct slvl_board
  *	Network driver support routines
  */
 
-static inline struct slvl_device* dev_to_chan(struct net_device *dev)
+static inline struct slvl_device *dev_to_chan(struct net_device *dev)
 {
 	return (struct slvl_device *)dev_to_hdlc(dev)->priv;
 }