RX will receive countless EAPOL frames over the life of the connection.
A number of conditional calls to rtllib_is_eapol_frame are made in this function.
So this call serves no purpose other than to spam logs with false warning that
it is indeed a EAPOL frame, remove it.
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                return -1;
        }
 
-       if (rtllib_is_eapol_frame(ieee, skb, hdrlen))
-               netdev_warn(ieee->dev, "RX: IEEE802.1X EAPOL frame!\n");
-
        return 0;
 }