From: Peng Li Date: Fri, 11 Jun 2021 03:36:17 +0000 (+0800) Subject: net: pc300too: fix the code style issue about "foo * bar" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f8864e26d3118ccf91d6a1ae5cdd18f4b56b7704;p=linux.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/wan/pc300too.c b/drivers/net/wan/pc300too.c index 8f592ff798fbf..17d5cb8287d41 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;