Skip to content

Commit

Permalink
vxge: Remove unnecessary ; in do {} while (0) macro
Browse files Browse the repository at this point in the history
This macro doesn't need a terminating ; so just remove it.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Joe Perches authored and David S. Miller committed Apr 3, 2012
1 parent 33be96e commit fca231b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/neterion/vxge/vxge-main.h
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ struct vxge_tx_priv {
timer.function = handle; \
timer.data = (unsigned long) arg; \
mod_timer(&timer, (jiffies + exp)); \
} while (0);
} while (0)

void vxge_initialize_ethtool_ops(struct net_device *ndev);
enum vxge_hw_status vxge_reset_all_vpaths(struct vxgedev *vdev);
Expand Down

0 comments on commit fca231b

Please sign in to comment.