diff options
author | Peng Li <lipeng321@huawei.com> | 2021-06-11 11:36:17 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-11 12:58:11 -0700 |
commit | f8864e26d3118ccf91d6a1ae5cdd18f4b56b7704 (patch) | |
tree | 517b7baf918a5d76aa9c992c30f70ab8c33a6119 /drivers/net/wan/pc300too.c | |
parent | a657c8b4d50d33954a3f766c8876f31d323d32b9 (diff) |
net: pc300too: fix the 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: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan/pc300too.c')
-rw-r--r-- | drivers/net/wan/pc300too.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/pc300too.c b/drivers/net/wan/pc300too.c index 8f592ff798fb..17d5cb8287d4 100644 --- a/drivers/net/wan/pc300too.c +++ b/drivers/net/wan/pc300too.c @@ -110,7 +110,7 @@ typedef struct card_s { static void pc300_set_iface(port_t *port) { card_t *card = port->card; - u32 __iomem * init_ctrl = &card->plxbase->init_ctrl; + u32 __iomem *init_ctrl = &card->plxbase->init_ctrl; u16 msci = get_msci(port); u8 rxs = port->rxs & CLK_BRG_MASK; u8 txs = port->txs & CLK_BRG_MASK; |