Browse Source

net: emaclite: Fix typo in error message

s/allocal/allocate/

Signed-off-by: Jens Renner <renner@efe-gmbh.de>
Acked-by: Michal Simek <monstr@monstr.eu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Jens Renner \(EFE\) 12 years ago
parent
commit
f1362e378a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/ethernet/xilinx/xilinx_emaclite.c

+ 1 - 1
drivers/net/ethernet/xilinx/xilinx_emaclite.c

@@ -877,7 +877,7 @@ static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev)
 
 	bus = mdiobus_alloc();
 	if (!bus) {
-		dev_err(dev, "Failed to allocal mdiobus\n");
+		dev_err(dev, "Failed to allocate mdiobus\n");
 		return -ENOMEM;
 	}