aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/wireless/ti/wl1251/spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ti/wl1251/spi.c b/drivers/net/wireless/ti/wl1251/spi.c
index 3b266d3231a3..4c67c2f9ea71 100644
--- a/drivers/net/wireless/ti/wl1251/spi.c
+++ b/drivers/net/wireless/ti/wl1251/spi.c
@@ -257,7 +257,7 @@ static int wl1251_spi_probe(struct spi_device *spi)
257 wl = hw->priv; 257 wl = hw->priv;
258 258
259 SET_IEEE80211_DEV(hw, &spi->dev); 259 SET_IEEE80211_DEV(hw, &spi->dev);
260 dev_set_drvdata(&spi->dev, wl); 260 spi_set_drvdata(spi, wl);
261 wl->if_priv = spi; 261 wl->if_priv = spi;
262 wl->if_ops = &wl1251_spi_ops; 262 wl->if_ops = &wl1251_spi_ops;
263 263
@@ -311,7 +311,7 @@ static int wl1251_spi_probe(struct spi_device *spi)
311 311
312static int wl1251_spi_remove(struct spi_device *spi) 312static int wl1251_spi_remove(struct spi_device *spi)
313{ 313{
314 struct wl1251 *wl = dev_get_drvdata(&spi->dev); 314 struct wl1251 *wl = spi_get_drvdata(spi);
315 315
316 free_irq(wl->irq, wl); 316 free_irq(wl->irq, wl);
317 wl1251_free_hw(wl); 317 wl1251_free_hw(wl);