Staging: rtl8192e: Remove unused endian_swap function

Signed-off-by: Mike McCormack <mikem@ring3k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Mike McCormack 2011-01-31 22:11:02 +09:00 committed by Greg Kroah-Hartman
parent 11aacc282d
commit 1694027394

View File

@ -2263,17 +2263,6 @@ static void rtl8192_get_eeprom_size(struct net_device* dev)
RT_TRACE(COMP_INIT, "<===========%s(), epromtype:%d\n", __FUNCTION__, priv->epromtype);
}
/*
* used to swap endian. as ntohl & htonl are not
* neccessary to swap endian, so use this instead.
*/
static inline u16 endian_swap(u16* data)
{
u16 tmp = *data;
*data = (tmp >> 8) | (tmp << 8);
return *data;
}
/*
* Adapter->EEPROMAddressSize should be set before this function call.
* EEPROM address size can be got through GetEEPROMSize8185()