diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-06-08 22:04:24 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-06-08 22:04:24 +0300 |
commit | 01ec65c812ef829c815d2f37a97cc4eb7925f8ae (patch) | |
tree | 8d39d98f1693385c162c62c0e82740829d4a7e7f /sound/soc/intel/haswell | |
parent | 8ffc57093bb1c270050f4229b5afd38ee8cef2bd (diff) | |
download | linux-01ec65c812ef829c815d2f37a97cc4eb7925f8ae.tar.xz |
ASoC: intel: Remove unused variable hsw
The recent fix left a variable declaration without usage.
sound/soc/intel/haswell/sst-haswell-pcm.c:1349:18: warning: unused variable ‘hsw’ [-Wunused-variable]
Fixes: edd8ed496b98 ('ASoC: Intel: handle haswell pcm suspend including runtime modules freeing')
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/intel/haswell')
-rw-r--r-- | sound/soc/intel/haswell/sst-haswell-pcm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/intel/haswell/sst-haswell-pcm.c b/sound/soc/intel/haswell/sst-haswell-pcm.c index e593e7a4b7a7..1aa819c7e09b 100644 --- a/sound/soc/intel/haswell/sst-haswell-pcm.c +++ b/sound/soc/intel/haswell/sst-haswell-pcm.c @@ -1346,7 +1346,6 @@ static void hsw_pcm_complete(struct device *dev) static int hsw_pcm_prepare(struct device *dev) { struct hsw_priv_data *pdata = dev_get_drvdata(dev); - struct sst_hsw *hsw = pdata->hsw; struct hsw_pcm_data *pcm_data; int i, err; |