Commit f8864e26 authored by Peng Li's avatar Peng Li Committed by David S. Miller

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: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a657c8b4
...@@ -110,7 +110,7 @@ typedef struct card_s { ...@@ -110,7 +110,7 @@ typedef struct card_s {
static void pc300_set_iface(port_t *port) static void pc300_set_iface(port_t *port)
{ {
card_t *card = port->card; 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); u16 msci = get_msci(port);
u8 rxs = port->rxs & CLK_BRG_MASK; u8 rxs = port->rxs & CLK_BRG_MASK;
u8 txs = port->txs & CLK_BRG_MASK; u8 txs = port->txs & CLK_BRG_MASK;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment