diff options
author | Liam Girdwood <liam.r.girdwood@linux.intel.com> | 2013-09-13 17:43:17 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-05 07:13:12 -0700 |
commit | 1aff4161cc9ed30b6842030ec1b91b4cdca1a811 (patch) | |
tree | e713be9f1da6ab848d71cd93d0afd42076f4f0f3 /sound | |
parent | 332769e13b075c82ae7b9f79be29506f8c6aceb2 (diff) | |
download | linux-3.10-1aff4161cc9ed30b6842030ec1b91b4cdca1a811.tar.gz linux-3.10-1aff4161cc9ed30b6842030ec1b91b4cdca1a811.tar.bz2 linux-3.10-1aff4161cc9ed30b6842030ec1b91b4cdca1a811.zip |
ALSA: compress: Fix compress device unregister.
commit 4028b6c4c03f213260e9290ff3a6b5439aad07ce upstream.
snd_unregister_device() should return the device type and not stream
direction.
Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Tested-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/core/compress_offload.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c index 98969541cbc..5863ba6dd12 100644 --- a/sound/core/compress_offload.c +++ b/sound/core/compress_offload.c @@ -837,7 +837,8 @@ static int snd_compress_dev_disconnect(struct snd_device *device) struct snd_compr *compr; compr = device->device_data; - snd_unregister_device(compr->direction, compr->card, compr->device); + snd_unregister_device(SNDRV_DEVICE_TYPE_COMPRESS, compr->card, + compr->device); return 0; } |