diff options
author | Arik Nemtsov <arik@wizery.com> | 2012-05-10 11:13:22 +0200 |
---|---|---|
committer | Luciano Coelho <coelho@ti.com> | 2012-06-05 14:55:06 +0200 |
commit | 7cfefd1f2acbd5ff2a1a8846de058064bd63550a (patch) | |
tree | 3c1aae4cb5413bc8ce47942eab812d0f16a4c43b /drivers/net | |
parent | wl18xx: add fw_status private data (diff) | |
download | linux-7cfefd1f2acbd5ff2a1a8846de058064bd63550a.tar.xz linux-7cfefd1f2acbd5ff2a1a8846de058064bd63550a.zip |
wl18xx: set Rx block-size alignment quirk
The 18xx FW sends Rx blocks with aligned length.
Signed-off-by: Arik Nemtsov <arik@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ti/wl18xx/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ti/wl18xx/main.c b/drivers/net/wireless/ti/wl18xx/main.c index 4a5ef6e53954..a074d811fef0 100644 --- a/drivers/net/wireless/ti/wl18xx/main.c +++ b/drivers/net/wireless/ti/wl18xx/main.c @@ -243,7 +243,8 @@ static int wl18xx_identify_chip(struct wl1271 *wl) wl1271_debug(DEBUG_BOOT, "chip id 0x%x (185x PG10)", wl->chip.id); wl->sr_fw_name = WL18XX_FW_NAME; - wl->quirks |= WLCORE_QUIRK_NO_ELP; + wl->quirks |= WLCORE_QUIRK_NO_ELP | + WLCORE_QUIRK_RX_BLOCKSIZE_ALIGN; /* TODO: need to blocksize alignment for RX/TX separately? */ break; |