Commit 16940273 authored by Mike McCormack's avatar Mike McCormack Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: Remove unused endian_swap function

parent 11aacc28
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -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()