Skip to content

Commit

Permalink
net: moxa: Remove extra space after a cast
Browse files Browse the repository at this point in the history
No space is necessary after a cast
This warning is found using checkpatch.pl

Signed-off-by: SZ Lin <sz.lin@moxa.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
SZ Lin authored and David S. Miller committed Jul 29, 2017
1 parent e8048b8 commit c45c5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/moxa/moxart_ether.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ static void moxart_tx_finished(struct net_device *ndev)

static irqreturn_t moxart_mac_interrupt(int irq, void *dev_id)
{
struct net_device *ndev = (struct net_device *) dev_id;
struct net_device *ndev = (struct net_device *)dev_id;
struct moxart_mac_priv_t *priv = netdev_priv(ndev);
unsigned int ists = readl(priv->base + REG_INTERRUPT_STATUS);

Expand Down

0 comments on commit c45c5d0

Please sign in to comment.