diff options
author | Wolfgang Denk <wd@denx.de> | 2012-07-10 09:18:33 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-07-10 09:18:33 +0200 |
commit | 3fe63839f3f0f9942fc4567a82954192e144e6a1 (patch) | |
tree | 553e49a978bc99622ec7386885fb36accc605d4a /net/link_local.c | |
parent | 895f3e0542015b347298c8b501e63d5f32002c04 (diff) | |
download | u-boot-imx-3fe63839f3f0f9942fc4567a82954192e144e6a1.zip u-boot-imx-3fe63839f3f0f9942fc4567a82954192e144e6a1.tar.gz u-boot-imx-3fe63839f3f0f9942fc4567a82954192e144e6a1.tar.bz2 |
Minor Coding Style cleanup
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'net/link_local.c')
-rw-r--r-- | net/link_local.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/link_local.c b/net/link_local.c index 582d011..8e7665f 100644 --- a/net/link_local.c +++ b/net/link_local.c @@ -229,8 +229,9 @@ void link_local_receive_arp(struct arp_hdr *arp, int len) * XXX Don't bother with ethernet link just yet if ((fds[0].revents & POLLIN) == 0) { if (fds[0].revents & POLLERR) { - // FIXME: links routinely go down; - // this shouldn't necessarily exit. + /* + * FIXME: links routinely go down; + */ bb_error_msg("iface %s is down", eth_get_name()); if (ready) { run(argv, "deconfig", &ip); |