Skip to content

Commit

Permalink
net: sealevel: fix the code style issue about "foo* bar"
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Peng Li authored and Jakub Kicinski committed Jun 1, 2021
1 parent 58f30ee commit 8be88e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wan/sealevel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 8be88e3

Please sign in to comment.