diff --git a/net/eth.c b/net/eth.c
index 62297abba41ac44e890e6ca32829858f7c8eb159..16a6dcbd8ca1dc09847ab0391550282c29d81e7b 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -441,8 +441,10 @@ int eth_init(bd_t *bis)
 {
 	struct eth_device* old_current;
 
-	if (!eth_current)
+	if (!eth_current) {
+		puts ("No ethernet found.\n");
 		return -1;
+	}
 
 	old_current = eth_current;
 	do {