summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-01-11 19:57:33 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-21 12:44:51 -0700
commitc9592f07f243b5605ddbe5b9d7a7cfe5652de919 (patch)
treef77ecb2dbdc2a1d303e3790dfe5271db70d18697 /sound
parent92b9c597d6c869648a04db3f32faaf22aeba8c8b (diff)
ASoC: Blackfin AC97: fix build error after multi-component update
commit e9c2048915048d605fd76539ddd96f00d593e1eb upstream. We need to tweak how we query the active capture/playback state after the recent overhauls of common code. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/blackfin/bf5xx-ac97.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/blackfin/bf5xx-ac97.c b/sound/soc/blackfin/bf5xx-ac97.c
index e69322978739..488593fba4f8 100644
--- a/sound/soc/blackfin/bf5xx-ac97.c
+++ b/sound/soc/blackfin/bf5xx-ac97.c
@@ -260,9 +260,9 @@ static int bf5xx_ac97_suspend(struct snd_soc_dai *dai)
pr_debug("%s : sport %d\n", __func__, dai->id);
if (!dai->active)
return 0;
- if (dai->capture.active)
+ if (dai->capture_active)
sport_rx_stop(sport);
- if (dai->playback.active)
+ if (dai->playback_active)
sport_tx_stop(sport);
return 0;
}