mirror of https://gitee.com/openkylin/linux.git
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:
parent
8c3af8f0de
commit
e8cd841bee
|
@ -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 @@ int r8712_cmd_thread(void *context)
|
|||
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);
|
||||
|
|
|
@ -91,14 +91,14 @@
|
|||
|
||||
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;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue