diff options
author | Peng Li <lipeng321@huawei.com> | 2021-05-25 16:07:55 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-05-26 00:41:54 +0200 |
commit | c4fdef99d17bad52d268ffe7a67b9ed2410cbd34 (patch) | |
tree | 77b147ac7cc05d358721f65760774e81609fa60a /drivers/net/wan/n2.c | |
parent | net: wan: add blank line after declarations (diff) | |
download | linux-c4fdef99d17bad52d268ffe7a67b9ed2410cbd34.tar.xz linux-c4fdef99d17bad52d268ffe7a67b9ed2410cbd34.zip |
net: wan: 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 '')
-rw-r--r-- | drivers/net/wan/n2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wan/n2.c b/drivers/net/wan/n2.c index 5ad8c5032900..180fb2c9a442 100644 --- a/drivers/net/wan/n2.c +++ b/drivers/net/wan/n2.c @@ -32,8 +32,8 @@ #include <asm/io.h> #include "hd64570.h" -static const char* version = "SDL RISCom/N2 driver version: 1.15"; -static const char* devname = "RISCom/N2"; +static const char *version = "SDL RISCom/N2 driver version: 1.15"; +static const char *devname = "RISCom/N2"; #undef DEBUG_PKT #define DEBUG_RINGS |