Commit a15e1317 authored by Stephen Hemminger's avatar Stephen Hemminger

[PATCH] skfddi - cleanup local and dead functions

Cleanup the SK Fddi driver a little more.  Mark some functions as static,
and eliminate (or comment out) some that are defined but never used.
Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
parent ceccd1cf
...@@ -141,16 +141,17 @@ void mac_update_counter(struct s_smc *smc) ...@@ -141,16 +141,17 @@ void mac_update_counter(struct s_smc *smc)
/* /*
* write long value into buffer memory over memory data register (MDR), * write long value into buffer memory over memory data register (MDR),
*/ */
void write_mdr(struct s_smc *smc, u_long val) static void write_mdr(struct s_smc *smc, u_long val)
{ {
CHECK_NPP() ; CHECK_NPP() ;
MDRW(val) ; MDRW(val) ;
} }
#if 0
/* /*
* read long value from buffer memory over memory data register (MDR), * read long value from buffer memory over memory data register (MDR),
*/ */
u_long read_mdr(struct s_smc *smc, unsigned int addr) static u_long read_mdr(struct s_smc *smc, unsigned int addr)
{ {
long p ; long p ;
CHECK_NPP() ; CHECK_NPP() ;
...@@ -164,6 +165,8 @@ u_long read_mdr(struct s_smc *smc, unsigned int addr) ...@@ -164,6 +165,8 @@ u_long read_mdr(struct s_smc *smc, unsigned int addr)
p += (u_long)inpw(FM_A(FM_MDRL)) ; p += (u_long)inpw(FM_A(FM_MDRL)) ;
return(p) ; return(p) ;
} }
#endif
/* /*
* clear buffer memory * clear buffer memory
*/ */
...@@ -529,7 +532,7 @@ static void build_claim_beacon(struct s_smc *smc, u_long t_request) ...@@ -529,7 +532,7 @@ static void build_claim_beacon(struct s_smc *smc, u_long t_request)
outpw(FM_A(FM_RPXSF),0) ; outpw(FM_A(FM_RPXSF),0) ;
} }
void formac_rcv_restart(struct s_smc *smc) static void formac_rcv_restart(struct s_smc *smc)
{ {
/* enable receive function */ /* enable receive function */
SETMASK(FM_A(FM_MDREG1),smc->hw.fp.rx_mode,FM_ADDRX) ; SETMASK(FM_A(FM_MDREG1),smc->hw.fp.rx_mode,FM_ADDRX) ;
...@@ -1017,25 +1020,6 @@ void sm_mac_check_beacon_claim(struct s_smc *smc) ...@@ -1017,25 +1020,6 @@ void sm_mac_check_beacon_claim(struct s_smc *smc)
} }
/*-------------------------- interface functions ----------------------------*/ /*-------------------------- interface functions ----------------------------*/
/*
* control ODL output
*/
void sm_pm_control(struct s_smc *smc, int mode)
{
SK_UNUSED(smc) ;
/*
* if PCM logic has set LS_REQUEST = Transmit QUIET Line State
* /FOTOFF signal turn activ -> ODL disable
*/
switch(mode) {
case PM_TRANSMIT_DISABLE :
break ;
case PM_TRANSMIT_ENABLE :
break ;
}
}
/* /*
* control MAC layer (called by RMT) * control MAC layer (called by RMT)
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment