diff options
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r-- | networking/udhcp/dhcpc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index d2f165904..4b23e4d39 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -850,7 +850,9 @@ static NOINLINE int send_decline(/*uint32_t xid,*/ uint32_t server, uint32_t req #endif /* Unicast a DHCP release message */ -static int send_release(uint32_t server, uint32_t ciaddr) +static +ALWAYS_INLINE /* one caller, help compiler to use this fact */ +int send_release(uint32_t server, uint32_t ciaddr) { struct dhcp_packet packet; |