* [PATCH] wl12xx: Print nvs/fw file name if loading fails.
@ 2011-11-30 14:35 Pontus Fuchs
2011-12-01 14:37 ` Luciano Coelho
0 siblings, 1 reply; 2+ messages in thread
From: Pontus Fuchs @ 2011-11-30 14:35 UTC (permalink / raw)
To: linux-wireless
Print the name of nvs/fw if request_firmware fails. This will make
troubleshooting a bit easier.
Signed-off-by: Pontus Fuchs <pontus.fuchs@gmail.com>
---
drivers/net/wireless/wl12xx/main.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c
index dbb088e..392dba4 100644
--- a/drivers/net/wireless/wl12xx/main.c
+++ b/drivers/net/wireless/wl12xx/main.c
@@ -1055,7 +1055,7 @@ static int wl1271_fetch_firmware(struct wl1271 *wl)
ret = request_firmware(&fw, fw_name, wl->dev);
if (ret < 0) {
- wl1271_error("could not get firmware: %d", ret);
+ wl1271_error("could not get firmware %s: %d", fw_name, ret);
return ret;
}
@@ -1093,7 +1093,8 @@ static int wl1271_fetch_nvs(struct wl1271 *wl)
ret = request_firmware(&fw, WL12XX_NVS_NAME, wl->dev);
if (ret < 0) {
- wl1271_error("could not get nvs file: %d", ret);
+ wl1271_error("could not get nvs file %s: %d", WL12XX_NVS_NAME,
+ ret);
return ret;
}
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] wl12xx: Print nvs/fw file name if loading fails.
2011-11-30 14:35 [PATCH] wl12xx: Print nvs/fw file name if loading fails Pontus Fuchs
@ 2011-12-01 14:37 ` Luciano Coelho
0 siblings, 0 replies; 2+ messages in thread
From: Luciano Coelho @ 2011-12-01 14:37 UTC (permalink / raw)
To: Pontus Fuchs; +Cc: linux-wireless
On Wed, 2011-11-30 at 15:35 +0100, Pontus Fuchs wrote:
> Print the name of nvs/fw if request_firmware fails. This will make
> troubleshooting a bit easier.
>
> Signed-off-by: Pontus Fuchs <pontus.fuchs@gmail.com>
> ---
Applied.
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-12-01 14:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30 14:35 [PATCH] wl12xx: Print nvs/fw file name if loading fails Pontus Fuchs
2011-12-01 14:37 ` Luciano Coelho
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox