diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-20 04:38:36 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-05-23 08:34:18 -0400 |
commit | 186c1821f94719a02e570cf45e2047ffb6ceaddf (patch) | |
tree | 4d3f3606c6e4022199c3ac2429aab802b46f8b95 | |
parent | 5ed5824bf43da9e2931fb94043a2942d73bec283 (diff) |
ALSA: ml403-ac97cr: 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>
-rw-r--r-- | sound/drivers/ml403-ac97cr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/drivers/ml403-ac97cr.c b/sound/drivers/ml403-ac97cr.c index 8125a7e95ee4..95ea4a153ea4 100644 --- a/sound/drivers/ml403-ac97cr.c +++ b/sound/drivers/ml403-ac97cr.c | |||
@@ -1325,7 +1325,6 @@ static int snd_ml403_ac97cr_probe(struct platform_device *pfdev) | |||
1325 | static int snd_ml403_ac97cr_remove(struct platform_device *pfdev) | 1325 | static int snd_ml403_ac97cr_remove(struct platform_device *pfdev) |
1326 | { | 1326 | { |
1327 | snd_card_free(platform_get_drvdata(pfdev)); | 1327 | snd_card_free(platform_get_drvdata(pfdev)); |
1328 | platform_set_drvdata(pfdev, NULL); | ||
1329 | return 0; | 1328 | return 0; |
1330 | } | 1329 | } |
1331 | 1330 | ||