[misc] Fix compile warnings...
diff --git a/src/e1_input.c b/src/e1_input.c
index cd23115..a319dcc 100644
--- a/src/e1_input.c
+++ b/src/e1_input.c
@@ -57,6 +57,9 @@
 /* list of all E1 lines */
 static LLIST_HEAD(line_list);
 
+/* to be implemented, e.g. by bsc_hack.c */
+void input_event(int event, enum e1inp_sign_type type, struct gsm_bts_trx *trx);
+
 #if 0
 /*
  * pcap writing of the misdn load
@@ -430,7 +433,8 @@
 		return -EINVAL;
 
 	/* FIXME: report further upwards */
-	return input_event(evt, link->type, link->trx);
+	input_event(evt, link->type, link->trx);
+	return 0;
 }
 
 /* register a driver with the E1 core */