]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: r8188eu: Remove pointless "alignment" entry in recv_frame
authorLarry Finger <Larry.Finger@lwfinger.net>
Fri, 14 Feb 2014 22:54:06 +0000 (16:54 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 15 Feb 2014 20:34:44 +0000 (12:34 -0800)
This alignment entry in union recv_frame does nothing. It certainly
dues not ensure alignment.

Suggested-by: Jes.Sorensen@redhat.com
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Jes.Sorensen@redhat.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/rtw_recv.h

index 866c9e47011d97791ecbfc1e3bdf4fa595d8c255..c6d7a659e9d1322108e6cf1167954da97b592eb6 100644 (file)
@@ -292,7 +292,6 @@ struct recv_frame_hdr {
 union recv_frame {
        union {
                struct recv_frame_hdr hdr;
-               uint mem[RECVFRAME_HDR_ALIGN>>2];
        } u;
 };