summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko2021-08-20 13:33:50 +0200
committerDenys Vlasenko2021-08-20 13:38:16 +0200
commit29b53ef03fc7ddd3ba27898d77a900a2f184aa0d (patch)
treee8a32418ead7c5a0e90e9b42b3f5bb555a368a79
parent9d286a0a556fe13be46b7b526035706afdd063f4 (diff)
downloadbusybox-29b53ef03fc7ddd3ba27898d77a900a2f184aa0d.zip
busybox-29b53ef03fc7ddd3ba27898d77a900a2f184aa0d.tar.gz
udhcp: fix build breakage on MIPS
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/udhcp/common.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h
index 8c678dd..ca778da 100644
--- a/networking/udhcp/common.h
+++ b/networking/udhcp/common.h
@@ -304,18 +304,6 @@ void udhcp_dump_packet(struct dhcp_packet *packet) FAST_FUNC;
# define log3s(msg) ((void)0)
#endif
-#if defined(__mips__)
-/*
- * The 'simple' message functions have a negative impact on the size of the
- * DHCP code when compiled for MIPS, so don't use them in this case.
- */
-#define bb_simple_info_msg bb_info_msg
-#define bb_simple_error_msg bb_error_msg
-#define bb_simple_perror_msg_and_die bb_perror_msg_and_die
-#undef log1s
-#define log1s log1
-#endif
-
/*** Other shared functions ***/
/* 2nd param is "uint32_t*" */