staging: rtl8712: changed variables to __le32

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>
This commit is contained in:
Jannik Becher 2016-12-20 18:59:39 +01:00 committed by Greg Kroah-Hartman
parent 8c3af8f0de
commit e8cd841bee
2 changed files with 11 additions and 10 deletions

View File

@ -314,7 +314,8 @@ void r8712_fw_cmd_data(struct _adapter *pAdapter, u32 *value, u8 flag)
int r8712_cmd_thread(void *context) int r8712_cmd_thread(void *context)
{ {
struct cmd_obj *pcmd; struct cmd_obj *pcmd;
unsigned int cmdsz, wr_sz, *pcmdbuf; unsigned int cmdsz, wr_sz;
__le32 *pcmdbuf;
struct tx_desc *pdesc; struct tx_desc *pdesc;
void (*pcmd_callback)(struct _adapter *dev, struct cmd_obj *pcmd); void (*pcmd_callback)(struct _adapter *dev, struct cmd_obj *pcmd);
struct _adapter *padapter = context; struct _adapter *padapter = context;
@ -334,7 +335,7 @@ _next:
r8712_unregister_cmd_alive(padapter); r8712_unregister_cmd_alive(padapter);
continue; continue;
} }
pcmdbuf = (unsigned int *)pcmdpriv->cmd_buf; pcmdbuf = (__le32 *)pcmdpriv->cmd_buf;
pdesc = (struct tx_desc *)pcmdbuf; pdesc = (struct tx_desc *)pcmdbuf;
memset(pdesc, 0, TXDESC_SIZE); memset(pdesc, 0, TXDESC_SIZE);
pcmd = cmd_hdl_filter(padapter, pcmd); pcmd = cmd_hdl_filter(padapter, pcmd);

View File

@ -91,14 +91,14 @@
struct tx_desc { struct tx_desc {
/*DWORD 0*/ /*DWORD 0*/
unsigned int txdw0; __le32 txdw0;
unsigned int txdw1; __le32 txdw1;
unsigned int txdw2; __le32 txdw2;
unsigned int txdw3; __le32 txdw3;
unsigned int txdw4; __le32 txdw4;
unsigned int txdw5; __le32 txdw5;
unsigned int txdw6; __le32 txdw6;
unsigned int txdw7; __le32 txdw7;
}; };