summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorStephan Linz <linz@li-pro.net>2012-04-10 06:20:57 +0000
committerWolfgang Denk <wd@denx.de>2012-04-21 17:28:03 +0200
commit34921d04b8324d06d60462222f4b98709665d5a3 (patch)
treef330ea2a43866b879b438be17d078fc3a42e7ce5 /drivers
parent0d24de9d558209fa525f350d1320c343f241c3f5 (diff)
downloadblackbird-obmc-uboot-34921d04b8324d06d60462222f4b98709665d5a3.tar.gz
blackbird-obmc-uboot-34921d04b8324d06d60462222f4b98709665d5a3.zip
net: ll_temac: drop obsolete "NAMESIZE" define
... after commit "net/miiphy/serial: drop duplicate NAMESIZE define" (sha1:f6add13) was applied. The building of the new LL TEMAC network driver fails with error below: xilinx_ll_temac.c: In function 'xilinx_ll_temac_initialize': xilinx_ll_temac.c:301: error: 'NAMESIZE' undeclared (first use in this function) xilinx_ll_temac.c:301: error: (Each undeclared identifier is reported only once xilinx_ll_temac.c:301: error: for each function it appears in.) Signed-off-by: Stephan Linz <linz@li-pro.net> Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/xilinx_ll_temac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/xilinx_ll_temac.c b/drivers/net/xilinx_ll_temac.c
index 85660c0216..27dafc15c0 100644
--- a/drivers/net/xilinx_ll_temac.c
+++ b/drivers/net/xilinx_ll_temac.c
@@ -298,9 +298,9 @@ int xilinx_ll_temac_initialize(bd_t *bis, struct ll_temac_info *devinf)
/* use given name or generate its own unique name */
if (devinf->devname) {
- strncpy(dev->name, devinf->devname, NAMESIZE);
+ strncpy(dev->name, devinf->devname, sizeof(dev->name));
} else {
- snprintf(dev->name, NAMESIZE, "lltemac.%lx", devinf->base_addr);
+ snprintf(dev->name, sizeof(dev->name), "lltemac.%lx", devinf->base_addr);
devinf->devname = dev->name;
}
OpenPOWER on IntegriCloud