From 829533287afbc2aff2b8c65eb0cbf8f8ee887ae2 Mon Sep 17 00:00:00 2001 From: Thomas Chou Date: Tue, 25 Aug 2015 20:54:24 +0800 Subject: net: protect status led access in bootp This fixes the error when STATUS_LED_BOOT is not defined. Signed-off-by: Thomas Chou Acked-by: Joe Hershberger --- net/bootp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/bootp.c') diff --git a/net/bootp.c b/net/bootp.c index defad73d1a..fbdc7cb3a3 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -349,7 +349,7 @@ static void bootp_handler(uchar *pkt, unsigned dest, struct in_addr sip, /* * Got a good BOOTP reply. Copy the data into our variables. */ -#ifdef CONFIG_STATUS_LED +#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT) status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF); #endif -- cgit v1.2.1