staging: rtl8192e: Remove empty function rtllib_rx_Master()
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Sat, 29 Jul 2023 07:52:51 +0000 (09:52 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 30 Jul 2023 10:29:05 +0000 (12:29 +0200)
Function rtllib_rx_Master() returns always 0. Variable ret is already
initialized with 0. Remove dead code.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/9604360121c5547cfaa282f73af5b948cdfbd769.1690615475.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtllib_rx.c

index 195ce0f..b9d220b 100644 (file)
@@ -1445,12 +1445,6 @@ static int rtllib_rx_InfraAdhoc(struct rtllib_device *ieee, struct sk_buff *skb,
        return 0;
 }
 
-static int rtllib_rx_Master(struct rtllib_device *ieee, struct sk_buff *skb,
-                struct rtllib_rx_stats *rx_stats)
-{
-       return 0;
-}
-
 static int rtllib_rx_Monitor(struct rtllib_device *ieee, struct sk_buff *skb,
                 struct rtllib_rx_stats *rx_stats)
 {
@@ -1510,7 +1504,6 @@ int rtllib_rx(struct rtllib_device *ieee, struct sk_buff *skb,
                break;
        case IW_MODE_MASTER:
        case IW_MODE_REPEAT:
-               ret = rtllib_rx_Master(ieee, skb, rx_stats);
                break;
        case IW_MODE_MONITOR:
                ret = rtllib_rx_Monitor(ieee, skb, rx_stats);