Commit 703b0d4b authored by Nicolas Joseph's avatar Nicolas Joseph Committed by Greg Kroah-Hartman
Browse files

staging/rtl8192u: remove unused function



Remove unused function N_DBPSOfRate. This function was only used by
function ComputeTxTime that was removed in the previous
commit 742728f9 ("staging: rtl8192u: remove unused function.")

Signed-off-by: default avatarNicolas Joseph <nicolas.joseph@homecomputing.fr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 60eeb410
Loading
Loading
Loading
Loading
+0 −44
Original line number Diff line number Diff line
@@ -1227,50 +1227,6 @@ inline u8 rtl8192_IsWirelessBMode(u16 rate)
		return 0;
}

u16 N_DBPSOfRate(u16 DataRate)
{
	u16 N_DBPS = 24;

	switch (DataRate) {
	case 60:
		N_DBPS = 24;
		break;

	case 90:
		N_DBPS = 36;
		break;

	case 120:
		N_DBPS = 48;
		break;

	case 180:
		N_DBPS = 72;
		break;

	case 240:
		N_DBPS = 96;
		break;

	case 360:
		N_DBPS = 144;
		break;

	case 480:
		N_DBPS = 192;
		break;

	case 540:
		N_DBPS = 216;
		break;

	default:
		break;
	}

	return N_DBPS;
}

short rtl819xU_tx_cmd(struct net_device *dev, struct sk_buff *skb)
{
	struct r8192_priv *priv = ieee80211_priv(dev);