diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-09-11 18:49:53 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-09-21 23:04:34 +0200 |
commit | ff25d32c25acd78bac339254108b132178f294b8 (patch) | |
tree | fa27eb1de52b9312c56963d8193aae5a5461875f /net/eth.c | |
parent | fc77086cf2976eaf73f5b9fe35a55293572428f2 (diff) | |
download | u-boot-imx-ff25d32c25acd78bac339254108b132178f294b8.zip u-boot-imx-ff25d32c25acd78bac339254108b132178f294b8.tar.gz u-boot-imx-ff25d32c25acd78bac339254108b132178f294b8.tar.bz2 |
net: turn name len check into an assert
The new sanity check introduces a printf warning for some systems:
eth.c:233: warning: format '%zu' expects type 'size_t', but argument 3 has type 'int'
Rather than tweak the format string, use the new assert() helper instead.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'net/eth.c')
-rw-r--r-- | net/eth.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -227,12 +227,7 @@ int eth_register(struct eth_device *dev) { struct eth_device *d; - size_t len = strlen(dev->name); - if (len >= NAMESIZE) { - printf("Network driver name is too long (%zu >= %zu): %s\n", - len, NAMESIZE, dev->name); - return -1; - } + assert(strlen(dev->name) < NAMESIZE); if (!eth_devices) { eth_current = eth_devices = dev; |