From 5130248e12a0d96c19d88444888c3fbcc93ee922 Mon Sep 17 00:00:00 2001 From: Daniel Cederman Date: Thu, 13 Mar 2014 14:28:46 +0100 Subject: smc91111: Move driver attach prototype to header file. Also signal to compiler that the start variable in lan91cxx_recv is only used when debugging. --- c/src/libchip/network/smc91111.c | 8 +++++--- c/src/libchip/network/smc91111exp.h | 3 +++ 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'c/src/libchip/network') diff --git a/c/src/libchip/network/smc91111.c b/c/src/libchip/network/smc91111.c index 2332688df7..aec0f56fbf 100644 --- a/c/src/libchip/network/smc91111.c +++ b/c/src/libchip/network/smc91111.c @@ -82,7 +82,7 @@ static void lan91cxx_phy_configure(struct lan91cxx_priv_data *cpd); #define max(l,r) ((l) > (r) ? (l) : (r)) /* \ ------------- Interrupt ------------- \ */ -void lan91cxx_interrupt_handler(void *arg) +static void lan91cxx_interrupt_handler(void *arg) { struct lan91cxx_priv_data *cpd = arg; unsigned short irq, event; @@ -153,6 +153,9 @@ static void lan91cxx_recv(struct lan91cxx_priv_data *cpd, struct mbuf *m) rxd_t *data = NULL, val; #if DEBUG & 64 rxd_t lp = 0; +#else + /* start is only read with debug enabled */ + (void)start; #endif struct mbuf *n; dbg_prefix = "<"; @@ -247,7 +250,6 @@ static void lan91cxx_recv(struct lan91cxx_priv_data *cpd, struct mbuf *m) } } db64_printf(" \n"); - #endif } val = get_data(cpd); /* Read control word (and potential data) unconditionally */ @@ -657,7 +659,7 @@ static void sendpacket(struct ifnet *ifp, struct mbuf *m) dbg_prefix = ""; } -void smc91111_txDaemon(void *arg) +static void smc91111_txDaemon(void *arg) { struct lan91cxx_priv_data *cpd = arg; struct ifnet *ifp = &cpd->arpcom.ac_if; diff --git a/c/src/libchip/network/smc91111exp.h b/c/src/libchip/network/smc91111exp.h index 11feaab0d9..08e086d9e7 100644 --- a/c/src/libchip/network/smc91111exp.h +++ b/c/src/libchip/network/smc91111exp.h @@ -18,6 +18,9 @@ typedef struct scmv91111_configuration { #endif } scmv91111_configuration_t; +int _rtems_smc91111_driver_attach (struct rtems_bsdnet_ifconfig *config, + scmv91111_configuration_t * scm_config); + #endif /* _SMC_91111_EXP_H_ */ -- cgit v1.2.3