diff options
author | Stephan Linz <linz@li-pro.net> | 2012-04-10 06:20:57 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-04-21 17:28:03 +0200 |
commit | 34921d04b8324d06d60462222f4b98709665d5a3 (patch) | |
tree | f330ea2a43866b879b438be17d078fc3a42e7ce5 | |
parent | 0d24de9d558209fa525f350d1320c343f241c3f5 (diff) | |
download | u-boot-imx-34921d04b8324d06d60462222f4b98709665d5a3.zip u-boot-imx-34921d04b8324d06d60462222f4b98709665d5a3.tar.gz u-boot-imx-34921d04b8324d06d60462222f4b98709665d5a3.tar.bz2 |
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>
-rw-r--r-- | drivers/net/xilinx_ll_temac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/xilinx_ll_temac.c b/drivers/net/xilinx_ll_temac.c index 85660c0..27dafc1 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; } |