Skip to content

Commit

Permalink
wl12xx/sdio_test.c: fix build breakage from WL127X_FW_NAME change
Browse files Browse the repository at this point in the history
Commit c302b2c ("wl12xx: Use a single
fw for both STA and AP roles") changed the name of the firmware name
definition, breaking the build of wl12xx/sdio_test.c.

Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
John W. Linville committed Aug 29, 2011
1 parent 9a53bf5 commit 78b8e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/wl12xx/sdio_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ static int wl1271_fetch_firmware(struct wl1271 *wl)
ret = request_firmware(&fw, WL128X_FW_NAME,
wl1271_wl_to_dev(wl));
else
ret = request_firmware(&fw, WL1271_FW_NAME,
ret = request_firmware(&fw, WL127X_FW_NAME,
wl1271_wl_to_dev(wl));

if (ret < 0) {
Expand Down

0 comments on commit 78b8e51

Please sign in to comment.