Commit 6c766f41 authored by Bob Copeland's avatar Bob Copeland Committed by John W. Linville

wl1251: use wiphy_dev instead of wl->spi->dev

Remove a dependency on the bus-specific struct device by using wiphy_dev
when requesting firmware.
Signed-off-by: default avatarBob Copeland <me@bobcopeland.com>
Signed-off-by: default avatarKalle Valo <kalle.valo@nokia.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 0764de64
...@@ -75,9 +75,10 @@ static irqreturn_t wl1251_irq(int irq, void *cookie) ...@@ -75,9 +75,10 @@ static irqreturn_t wl1251_irq(int irq, void *cookie)
static int wl1251_fetch_firmware(struct wl1251 *wl) static int wl1251_fetch_firmware(struct wl1251 *wl)
{ {
const struct firmware *fw; const struct firmware *fw;
struct device *dev = wiphy_dev(wl->hw->wiphy);
int ret; int ret;
ret = request_firmware(&fw, wl->chip.fw_filename, &wl->spi->dev); ret = request_firmware(&fw, wl->chip.fw_filename, dev);
if (ret < 0) { if (ret < 0) {
wl1251_error("could not get firmware: %d", ret); wl1251_error("could not get firmware: %d", ret);
...@@ -113,9 +114,10 @@ static int wl1251_fetch_firmware(struct wl1251 *wl) ...@@ -113,9 +114,10 @@ static int wl1251_fetch_firmware(struct wl1251 *wl)
static int wl1251_fetch_nvs(struct wl1251 *wl) static int wl1251_fetch_nvs(struct wl1251 *wl)
{ {
const struct firmware *fw; const struct firmware *fw;
struct device *dev = wiphy_dev(wl->hw->wiphy);
int ret; int ret;
ret = request_firmware(&fw, wl->chip.nvs_filename, &wl->spi->dev); ret = request_firmware(&fw, wl->chip.nvs_filename, dev);
if (ret < 0) { if (ret < 0) {
wl1251_error("could not get nvs file: %d", ret); wl1251_error("could not get nvs file: %d", ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment