Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 864e1e8d authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Sound: remove direct access of driver_data



This is the last in-kernel direct usage of driver_data, replace it with
the proper dev_get/set_drvdata() calls.

Cc: Takashi Iwai <tiwai@suse.de>
Cc: Jaroslav Kysela <perex@perex.cz>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 909662e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1037,14 +1037,14 @@ static int __devinit wm8988_spi_probe(struct spi_device *spi)
	codec->control_data = spi;
	codec->dev = &spi->dev;

	spi->dev.driver_data = wm8988;
	dev_set_drvdata(&spi->dev, wm8988);

	return wm8988_register(wm8988);
}

static int __devexit wm8988_spi_remove(struct spi_device *spi)
{
	struct wm8988_priv *wm8988 = spi->dev.driver_data;
	struct wm8988_priv *wm8988 = dev_get_drvdata(&spi->dev);

	wm8988_unregister(wm8988);