diff options
author | Juuso Oikarinen <juuso.oikarinen@nokia.com> | 2009-11-02 13:22:12 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-02 15:43:35 -0500 |
commit | ad150e966e987edcf737e1871d9e44a30d1aa58d (patch) | |
tree | eab0be361e9a02676c032b0c1ac3a0aac203179e /drivers/net/wireless/wl12xx | |
parent | 19ad0715d8d9acc259ef02f83df767df2cf1eafe (diff) |
wl1271: Correct endianness-handling of command status
Correct the endianness-handling of the firmware command result status handling
code.
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Reviewed-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_cmd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_cmd.c b/drivers/net/wireless/wl12xx/wl1271_cmd.c index 46e5ea48651b..8acee5cf0e61 100644 --- a/drivers/net/wireless/wl12xx/wl1271_cmd.c +++ b/drivers/net/wireless/wl12xx/wl1271_cmd.c | |||
@@ -48,6 +48,7 @@ int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len) | |||
48 | unsigned long timeout; | 48 | unsigned long timeout; |
49 | u32 intr; | 49 | u32 intr; |
50 | int ret = 0; | 50 | int ret = 0; |
51 | u16 status; | ||
51 | 52 | ||
52 | cmd = buf; | 53 | cmd = buf; |
53 | cmd->id = cpu_to_le16(id); | 54 | cmd->id = cpu_to_le16(id); |
@@ -78,8 +79,9 @@ int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len) | |||
78 | wl1271_spi_read(wl, wl->cmd_box_addr, cmd, | 79 | wl1271_spi_read(wl, wl->cmd_box_addr, cmd, |
79 | sizeof(struct wl1271_cmd_header), false); | 80 | sizeof(struct wl1271_cmd_header), false); |
80 | 81 | ||
81 | if (cmd->status != CMD_STATUS_SUCCESS) { | 82 | status = le16_to_cpu(cmd->status); |
82 | wl1271_error("command execute failure %d", cmd->status); | 83 | if (status != CMD_STATUS_SUCCESS) { |
84 | wl1271_error("command execute failure %d", status); | ||
83 | ret = -EIO; | 85 | ret = -EIO; |
84 | } | 86 | } |
85 | 87 | ||