Skip to content

Commit

Permalink
wl1271: Changed access to fw status register to use raw read
Browse files Browse the repository at this point in the history
Changed access to fw status register to use raw read instead of
translated addressing. On SDIO access by translated addressing was not
working and raw access is working also on SPI.

Signed-off-by: Teemu Paasikivi <ext-teemu.3.paasikivi@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Teemu Paasikivi authored and John W. Linville committed Mar 9, 2010
1 parent 5129dff commit 09a9c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/wl12xx/wl1271_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ static void wl1271_fw_status(struct wl1271 *wl,
u32 total = 0;
int i;

wl1271_read(wl, FW_STATUS_ADDR, status, sizeof(*status), false);
wl1271_raw_read(wl, FW_STATUS_ADDR, status, sizeof(*status), false);

wl1271_debug(DEBUG_IRQ, "intr: 0x%x (fw_rx_counter = %d, "
"drv_rx_counter = %d, tx_results_counter = %d)",
Expand Down

0 comments on commit 09a9c2b

Please sign in to comment.