Messages in this thread Patch in this message |  | | From | Guangbin Huang <> | Subject | [PATCH net-next 03/10] net: sealevel: fix the code style issue about "foo* bar" | Date | Sun, 30 May 2021 14:24:27 +0800 |
| |
From: Peng Li <lipeng321@huawei.com>
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> --- drivers/net/wan/sealevel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/wan/sealevel.c b/drivers/net/wan/sealevel.c index 829e9bc01a49..465c9ace1dc7 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; } -- 2.8.1
|  |