Commit 50c7d0da64e031c072fdc51b30d05c98761e3ebc

Authored by Sachin Kamat
Committed by Takashi Iwai
1 parent 45837cb214

ALSA: virmidi: Remove redundant platform_set_drvdata()

Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

Showing 1 changed file with 0 additions and 1 deletions Side-by-side Diff

sound/drivers/virmidi.c
... ... @@ -132,7 +132,6 @@
132 132 static int snd_virmidi_remove(struct platform_device *devptr)
133 133 {
134 134 snd_card_free(platform_get_drvdata(devptr));
135   - platform_set_drvdata(devptr, NULL);
136 135 return 0;
137 136 }
138 137