wl1271: Add wl1271_load_firmware() and export some functions
For the SDIO testing module we need to load the firmware but not boot it. wl1271_load_firmware() is meant to do just the firmware loading part. We also export some functions so they are usable in the testing module. Signed-off-by: Roger Quadros <roger.quadros@nokia.com> Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
This commit is contained in:
committed by
Luciano Coelho
parent
43a598d5e4
commit
870c367cf8
@ -467,7 +467,8 @@ static void wl1271_boot_hw_version(struct wl1271 *wl)
|
||||
wl->hw_pg_ver = (s8)fuse;
|
||||
}
|
||||
|
||||
int wl1271_boot(struct wl1271 *wl)
|
||||
/* uploads NVS and firmware */
|
||||
int wl1271_load_firmware(struct wl1271 *wl)
|
||||
{
|
||||
int ret = 0;
|
||||
u32 tmp, clk, pause;
|
||||
@ -572,6 +573,20 @@ int wl1271_boot(struct wl1271 *wl)
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
out:
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(wl1271_load_firmware);
|
||||
|
||||
int wl1271_boot(struct wl1271 *wl)
|
||||
{
|
||||
int ret;
|
||||
|
||||
/* upload NVS and firmware */
|
||||
ret = wl1271_load_firmware(wl);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* 10.5 start firmware */
|
||||
ret = wl1271_boot_run_firmware(wl);
|
||||
if (ret < 0)
|
||||
|
Reference in New Issue
Block a user