diff options
author | Tomasz Moń <desowin@gmail.com> | 2013-07-23 07:42:49 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-07-26 16:59:01 -0400 |
commit | 83e612f632c3897be29ef02e0472f6d63e258378 (patch) | |
tree | 340711f2d9d07c6562f6d3c95b9a5605c51df1d2 /drivers/net/wireless/mwifiex | |
parent | 23d412a2e94f55b84dbf9d5e64f381677bc90575 (diff) | |
download | blackbird-op-linux-83e612f632c3897be29ef02e0472f6d63e258378.tar.gz blackbird-op-linux-83e612f632c3897be29ef02e0472f6d63e258378.zip |
mwifiex: Add missing endian conversion.
Both type and pkt_len variables are in host endian and these should be in
Little Endian in the payload.
Signed-off-by: Tomasz Moń <desowin@gmail.com>
Acked-by: Bing Zhao <bzhao@marvell.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex')
-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 |