From da1d85cfd2bc69bc8db52be0a6b6c611fef4419c Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Thu, 19 Jul 2012 00:25:16 +0200 Subject: [PATCH] remove obsolete break condition --- kernel/init.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kernel/init.c b/kernel/init.c index ba1774d7..b227e5cc 100644 --- a/kernel/init.c +++ b/kernel/init.c @@ -294,10 +294,8 @@ int initd(void* arg) init_netifs(); /* test if interface is really up */ - if (!netif_is_up(&default_netif)) { + if (!netif_is_up(&default_netif)) kputs("network interface is not up\n"); - return -ENODEV; - } #endif #if !NO_SYS