diff options
author | Peng Li <lipeng321@huawei.com> | 2021-06-01 21:23:18 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-01 16:57:47 -0700 |
commit | 68fd73925bce2d81e7144caf16519e6b7e80b6a1 (patch) | |
tree | 85bd20cc876b670aa7da74a0bc8bec5f94c89a6d /drivers | |
parent | 04cc04f07bb25e5555b27f0d6069599f0da23cad (diff) |
net: hdlc: fix an code style issue about "foo* bar"
Fix the checkpatch error as "foo* bar" and should be "foo *bar".
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wan/hdlc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/hdlc.c b/drivers/net/wan/hdlc.c index 6199a705d3df..3cdb6417ffdb 100644 --- a/drivers/net/wan/hdlc.c +++ b/drivers/net/wan/hdlc.c @@ -36,7 +36,7 @@ #include <linux/slab.h> #include <net/net_namespace.h> -static const char* version = "HDLC support module revision 1.22"; +static const char *version = "HDLC support module revision 1.22"; #undef DEBUG_LINK |