diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-20 04:38:38 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-05-23 08:35:33 -0400 |
commit | a204341dae68bee125f4e7f22c5640cb4e3aae16 (patch) | |
tree | 01bea2e4f35d0d2d3fb9de92f34b398d55e393eb /sound/drivers | |
parent | 984ef60cb148c468925f5b1a15a3f425c9d6bf6c (diff) |
ALSA: mtpav: 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>
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/mtpav.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/drivers/mtpav.c b/sound/drivers/mtpav.c index 9f1815b99a15..e5ec7eb27dec 100644 --- a/sound/drivers/mtpav.c +++ b/sound/drivers/mtpav.c | |||
@@ -749,7 +749,6 @@ static int snd_mtpav_probe(struct platform_device *dev) | |||
749 | static int snd_mtpav_remove(struct platform_device *devptr) | 749 | static int snd_mtpav_remove(struct platform_device *devptr) |
750 | { | 750 | { |
751 | snd_card_free(platform_get_drvdata(devptr)); | 751 | snd_card_free(platform_get_drvdata(devptr)); |
752 | platform_set_drvdata(devptr, NULL); | ||
753 | return 0; | 752 | return 0; |
754 | } | 753 | } |
755 | 754 | ||