diff options
author | John W. Linville <linville@tuxdriver.com> | 2013-08-01 14:30:59 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-08-01 14:30:59 -0400 |
commit | 22e02a0272e5291a40ca28d2b7aea5231c832077 (patch) | |
tree | 04630aa6452458c643a3af6fd2c296609beef2c6 /drivers/net/wireless/mwifiex/sdio.c | |
parent | b00589af3b04736376f24625ab0b394642e89e29 (diff) | |
parent | 11a45820d02ee78ad22bb95d5abb94950a355d8d (diff) | |
download | linux-22e02a0272e5291a40ca28d2b7aea5231c832077.tar.bz2 |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless into for-davem
Diffstat (limited to 'drivers/net/wireless/mwifiex/sdio.c')
-rw-r--r-- | drivers/net/wireless/mwifiex/sdio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/mwifiex/sdio.c b/drivers/net/wireless/mwifiex/sdio.c index 5ef49f2e375a..09185c963248 100644 --- a/drivers/net/wireless/mwifiex/sdio.c +++ b/drivers/net/wireless/mwifiex/sdio.c @@ -1639,8 +1639,8 @@ static int mwifiex_sdio_host_to_card(struct mwifiex_adapter *adapter, /* Allocate buffer and copy payload */ blk_size = MWIFIEX_SDIO_BLOCK_SIZE; buf_block_len = (pkt_len + blk_size - 1) / blk_size; - *(u16 *) &payload[0] = (u16) pkt_len; - *(u16 *) &payload[2] = type; + *(__le16 *)&payload[0] = cpu_to_le16((u16)pkt_len); + *(__le16 *)&payload[2] = cpu_to_le16(type); /* * This is SDIO specific header |