staging: ft1000-pcmcia: remove unused ft1000_asic_read and ft1000_asic_write functions

Functions ft1000_asic_read() and ft1000_asic_write() are unused. Remove them.

Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Ondrej Zary 2011-07-01 00:03:51 +02:00 committed by Greg Kroah-Hartman
parent 3061fab152
commit ba5e17e6ab
1 changed files with 0 additions and 34 deletions

View File

@ -86,40 +86,6 @@ MODULE_SUPPORTED_DEVICE("FT1000");
#define MAX_RCV_LOOP 100
//---------------------------------------------------------------------------
//
// Function: ft1000_asic_read
// Description: This function will retrieve the value of a specific ASIC
// register.
// Input:
// dev - network device structure
// offset - ASIC register to read
// Output:
// value - value of ASIC register
//
//---------------------------------------------------------------------------
inline u16 ft1000_asic_read(struct net_device *dev, u16 offset)
{
return (ft1000_read_reg(dev, offset));
}
//---------------------------------------------------------------------------
//
// Function: ft1000_asic_write
// Description: This function will set the value of a specific ASIC
// register.
// Input:
// dev - network device structure
// value - value to set ASIC register
// Output:
// none
//
//---------------------------------------------------------------------------
inline void ft1000_asic_write(struct net_device *dev, u16 offset, u16 value)
{
ft1000_write_reg(dev, offset, value);
}
//---------------------------------------------------------------------------
//
// Function: ft1000_read_fifo_len