|
@@ -272,9 +272,10 @@ static int wl12xx_identify_chip(struct wl1271 *wl)
|
|
|
wl1271_warning("chip id 0x%x (1271 PG10) support is obsolete",
|
|
|
wl->chip.id);
|
|
|
|
|
|
- wl->quirks |= WLCORE_QUIRK_NO_BLOCKSIZE_ALIGNMENT |
|
|
|
- WLCORE_QUIRK_LEGACY_NVS;
|
|
|
- wl->plt_fw_name = WL127X_PLT_FW_NAME;
|
|
|
+ /* clear the alignment quirk, since we don't support it */
|
|
|
+ wl->quirks &= ~WLCORE_QUIRK_TX_BLOCKSIZE_ALIGN;
|
|
|
+
|
|
|
+ wl->quirks |= WLCORE_QUIRK_LEGACY_NVS;
|
|
|
wl->sr_fw_name = WL127X_FW_NAME_SINGLE;
|
|
|
wl->mr_fw_name = WL127X_FW_NAME_MULTI;
|
|
|
|
|
@@ -287,8 +288,10 @@ static int wl12xx_identify_chip(struct wl1271 *wl)
|
|
|
wl1271_debug(DEBUG_BOOT, "chip id 0x%x (1271 PG20)",
|
|
|
wl->chip.id);
|
|
|
|
|
|
- wl->quirks |= WLCORE_QUIRK_NO_BLOCKSIZE_ALIGNMENT |
|
|
|
- WLCORE_QUIRK_LEGACY_NVS;
|
|
|
+ /* clear the alignment quirk, since we don't support it */
|
|
|
+ wl->quirks &= ~WLCORE_QUIRK_TX_BLOCKSIZE_ALIGN;
|
|
|
+
|
|
|
+ wl->quirks |= WLCORE_QUIRK_LEGACY_NVS;
|
|
|
wl->plt_fw_name = WL127X_PLT_FW_NAME;
|
|
|
wl->sr_fw_name = WL127X_FW_NAME_SINGLE;
|
|
|
wl->mr_fw_name = WL127X_FW_NAME_MULTI;
|