From 112e0d685512700f73e35371b374c79ca948d568 Mon Sep 17 00:00:00 2001 From: Adam Dunkels Date: Thu, 5 Dec 2013 23:57:13 +0100 Subject: [PATCH] Removed reliance on the core/net/ipv4 module --- core/net/ip/slipdev.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/net/ip/slipdev.c b/core/net/ip/slipdev.c index 2ee528fd0..a75f524bf 100644 --- a/core/net/ip/slipdev.c +++ b/core/net/ip/slipdev.c @@ -66,7 +66,6 @@ */ #include "uip.h" -#include "uip-fw.h" #include "slipdev.h" #include /* For memcpy() */ @@ -89,7 +88,7 @@ static uint8_t lastc; * from the uip_buf buffer, and the following bytes (the application * data) are read from the uip_appdata buffer. * - * \return This function will always return UIP_FW_OK. + * \return This function will always return 0. */ /*-----------------------------------------------------------------------------------*/ uint8_t @@ -123,7 +122,7 @@ slipdev_send(void) } slipdev_char_put(SLIP_END); - return UIP_FW_OK; + return 0; } /*-----------------------------------------------------------------------------------*/ /**