Browse Source

net: emaclite: Change driver name and add address

Current xilinx emaclite use net multi registration
but doesn't support several emaclites interfaces.
Changing driver name with adding address to name
is the first step how to distiguish several drivers.

Signed-off-by: Michal Simek <monstr@monstr.eu>
Michal Simek 13 năm trước cách đây
mục cha
commit
25a025518b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      drivers/net/xilinx_emaclite.c

+ 1 - 1
drivers/net/xilinx_emaclite.c

@@ -350,7 +350,7 @@ int xilinx_emaclite_initialize (bd_t *bis, int base_addr)
 		return -1;
 
 	memset(dev, 0, sizeof(*dev));
-	sprintf(dev->name, "Xilinx_Emaclite");
+	sprintf(dev->name, "Xelite.%x", base_addr);
 
 	dev->iobase = base_addr;
 	dev->priv = 0;