From: Lothar Waßmann Date: Tue, 16 Jun 2020 07:00:17 +0000 (+0200) Subject: net: bootp: silence messages about unhandled DHCP options X-Git-Tag: KARO_TX6-2020-09-18~8 X-Git-Url: https://git.karo-electronics.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=a95f6dd44e7f9ec01ba6b6a663b931cfccb30100 net: bootp: silence messages about unhandled DHCP options --- diff --git a/net/bootp.c b/net/bootp.c index 53f83626e1..44917e4807 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -863,8 +863,8 @@ static void dhcp_process_options(uchar *popt, struct bootp_hdr *bp) if (dhcp_vendorex_proc(popt)) break; #endif - printf("*** Unhandled DHCP Option in OFFER/ACK:" - " %d\n", *popt); + debug("*** Unhandled DHCP Option in OFFER/ACK: %d\n", + *popt); break; } popt += oplen + 2; /* Process next option */