staging: rtl8712: changed variables to __le32
authorJannik Becher <becher.jannik@gmail.com>
Tue, 20 Dec 2016 17:59:39 +0000 (18:59 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Jan 2017 15:51:16 +0000 (16:51 +0100)
Fixed sparse warning "cast to restricted __le32".
Changed struct tx_desc members to __le32 and pcmdbuf to __le32.

Signed-off-by: Jannik Becher <becher.jannik@gmail.com>
Tested-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl8712_cmd.c
drivers/staging/rtl8712/rtl8712_xmit.h

index 9f61583..6e5e177 100644 (file)
@@ -314,7 +314,8 @@ void r8712_fw_cmd_data(struct _adapter *pAdapter, u32 *value, u8 flag)
 int r8712_cmd_thread(void *context)
 {
        struct cmd_obj *pcmd;
-       unsigned int cmdsz, wr_sz, *pcmdbuf;
+       unsigned int cmdsz, wr_sz;
+       __le32 *pcmdbuf;
        struct tx_desc *pdesc;
        void (*pcmd_callback)(struct _adapter *dev, struct cmd_obj *pcmd);
        struct _adapter *padapter = context;
@@ -334,7 +335,7 @@ _next:
                        r8712_unregister_cmd_alive(padapter);
                        continue;
                }
-               pcmdbuf = (unsigned int *)pcmdpriv->cmd_buf;
+               pcmdbuf = (__le32 *)pcmdpriv->cmd_buf;
                pdesc = (struct tx_desc *)pcmdbuf;
                memset(pdesc, 0, TXDESC_SIZE);
                pcmd = cmd_hdl_filter(padapter, pcmd);
index b50e7a1..02b1593 100644 (file)
 
 struct tx_desc {
        /*DWORD 0*/
-       unsigned int txdw0;
-       unsigned int txdw1;
-       unsigned int txdw2;
-       unsigned int txdw3;
-       unsigned int txdw4;
-       unsigned int txdw5;
-       unsigned int txdw6;
-       unsigned int txdw7;
+       __le32 txdw0;
+       __le32 txdw1;
+       __le32 txdw2;
+       __le32 txdw3;
+       __le32 txdw4;
+       __le32 txdw5;
+       __le32 txdw6;
+       __le32 txdw7;
 };