Commit 93b760b7 authored by Mark Brown's avatar Mark Brown

ASoC: Implement SPI device unregistration for WM8731

Completely untested.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent fc996757
...@@ -655,12 +655,17 @@ static int __devinit wm8731_spi_probe(struct spi_device *spi) ...@@ -655,12 +655,17 @@ static int __devinit wm8731_spi_probe(struct spi_device *spi)
codec->hw_write = (hw_write_t)wm8731_spi_write; codec->hw_write = (hw_write_t)wm8731_spi_write;
codec->dev = &spi->dev; codec->dev = &spi->dev;
spi->dev.driver_data = wm8731;
return wm8731_register(wm8731); return wm8731_register(wm8731);
} }
static int __devexit wm8731_spi_remove(struct spi_device *spi) static int __devexit wm8731_spi_remove(struct spi_device *spi)
{ {
/* FIXME: This isn't actually implemented... */ struct wm8731_priv *wm8731 = spi->dev.driver_data;
wm8731_unregister(wm8731);
return 0; return 0;
} }
......
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