Passing frames with a bad FCS to the user is an optional feature.
However it doesn't work reliable and strangely not in the native monitor mode?!
Signed-off-by: Christian Lamparter <chunkeey@web.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
                return 0;
 
        if (!(hdr->flags & cpu_to_le16(P54_HDR_FLAG_DATA_IN_FCS_GOOD))) {
-               if (priv->filter_flags & FIF_FCSFAIL)
-                       rx_status.flag |= RX_FLAG_FAILED_FCS_CRC;
-               else
-                       return 0;
+               return 0;
        }
 
        if (hdr->decrypt_status == P54_DECRYPT_OK)
        struct p54_common *priv = dev->priv;
 
        *total_flags &= FIF_PROMISC_IN_BSS |
-                       FIF_OTHER_BSS |
-                       (*total_flags & FIF_PROMISC_IN_BSS ?
-                               FIF_FCSFAIL : 0);
+                       FIF_OTHER_BSS;
 
        priv->filter_flags = *total_flags;