diff options
author | Wolfgang Denk <wd@denx.de> | 2011-11-23 21:23:45 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-11-23 21:23:45 +0100 |
commit | fdbe8b9a2d1858ba35dd6214315563ad44d4a0e3 (patch) | |
tree | 98c39a0594ef02e08d5842cfff1f1d6bcc5a8eda /net | |
parent | bd0f5ca806c73f9e1ef4a2a0416233ab7e257df9 (diff) | |
parent | d780e74fc3abe6a8b9a01357720c15d974d83dae (diff) | |
download | u-boot-imx-fdbe8b9a2d1858ba35dd6214315563ad44d4a0e3.zip u-boot-imx-fdbe8b9a2d1858ba35dd6214315563ad44d4a0e3.tar.gz u-boot-imx-fdbe8b9a2d1858ba35dd6214315563ad44d4a0e3.tar.bz2 |
Merge branch 'hs@denx.de' of git://git.denx.de/u-boot-staging
* 'hs@denx.de' of git://git.denx.de/u-boot-staging:
drivers/net/dnet.c: Fix GCC 4.6 warnings
board/xaeniax/flash.c: Fix GCC 4.6 warnings
net/bootp.c: Fix GCC 4.6 warning
common/cmd_bootm.c: Fix GCC 4.6 warnings
board/mx1ads/mx1ads.c: Fix GCC 4.6 warning
board/mx1ads/syncflash.c: Fix GCC 4.6 warnings
board/lubbock/flash.c: Fix GCC 4.6 warnings
drivers/net/cs8900.c: Fix GCC 4.6 warning
arch/arm/cpu/arm926ejs/omap/cpuinfo.c: Fix GCC 4.6 warnings
drivers/net/lan91c96.c: Fix GCC 4.6 warning
board/ronetix/pm9263/pm9263.c: Fix GCC 4.6 warning
drivers/mtd/onenand/samsung.c: Fix GCC 4.6 warning
drivers/usb/musb/musb_hcd.c: Fix GCC 4.6 warning
Diffstat (limited to 'net')
-rw-r--r-- | net/bootp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bootp.c b/net/bootp.c index b789eec..34124b8 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -17,6 +17,7 @@ #ifdef CONFIG_STATUS_LED #include <status_led.h> #endif +#include <linux/compiler.h> #define BOOTP_VENDOR_MAGIC 0x63825363 /* RFC1048 Magic Cookie */ @@ -105,7 +106,7 @@ static int BootpCheckPkt(uchar *pkt, unsigned dest, unsigned src, unsigned len) */ static void BootpCopyNetParams(Bootp_t *bp) { - IPaddr_t tmp_ip; + __maybe_unused IPaddr_t tmp_ip; NetCopyIP(&NetOurIP, &bp->bp_yiaddr); #if !defined(CONFIG_BOOTP_SERVERIP) |