mirror of https://gitee.com/openkylin/linux.git
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 742728f97a
("staging: rtl8192u: remove unused function.")
Signed-off-by: Nicolas Joseph <nicolas.joseph@homecomputing.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
60eeb4102e
commit
703b0d4bbb
|
@ -1227,50 +1227,6 @@ inline u8 rtl8192_IsWirelessBMode(u16 rate)
|
||||||
return 0;
|
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)
|
short rtl819xU_tx_cmd(struct net_device *dev, struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
struct r8192_priv *priv = ieee80211_priv(dev);
|
struct r8192_priv *priv = ieee80211_priv(dev);
|
||||||
|
|
Loading…
Reference in New Issue