diff --git a/include/net.h b/include/net.h
index 279a5b493a72aa6863b79e189bb7a9d65063105a..73fa04f2be72a5f61b89ebc89a64208f84c3112b 100644
--- a/include/net.h
+++ b/include/net.h
@@ -149,14 +149,14 @@ struct eth_device {
 	phys_addr_t iobase;
 	int state;
 
-	int  (*init) (struct eth_device *, bd_t *);
-	int  (*send) (struct eth_device *, void *packet, int length);
-	int  (*recv) (struct eth_device *);
-	void (*halt) (struct eth_device *);
+	int (*init)(struct eth_device *, bd_t *);
+	int (*send)(struct eth_device *, void *packet, int length);
+	int (*recv)(struct eth_device *);
+	void (*halt)(struct eth_device *);
 #ifdef CONFIG_MCAST_TFTP
-	int (*mcast) (struct eth_device *, const u8 *enetaddr, u8 set);
+	int (*mcast)(struct eth_device *, const u8 *enetaddr, u8 set);
 #endif
-	int  (*write_hwaddr) (struct eth_device *);
+	int (*write_hwaddr)(struct eth_device *);
 	struct eth_device *next;
 	int index;
 	void *priv;