From: Jaroslav Kysela Date: Wed, 10 Feb 2021 08:37:13 +0000 (+0100) Subject: ALSA: core - add missing compress device type to /proc/asound/devices X-Git-Tag: iomap-folio-5.17-old~2030^2~3^2~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2c28156d88aa36ee8d45a3e68cc7eaa7d919dd96;p=users%2Fwilly%2Flinux.git ALSA: core - add missing compress device type to /proc/asound/devices Signed-off-by: Jaroslav Kysela Acked-by: Vinod Koul Link: https://lore.kernel.org/r/20210210083713.1034201-1-perex@perex.cz Signed-off-by: Takashi Iwai --- diff --git a/sound/core/sound.c b/sound/core/sound.c index 2f759febe365..af89e51dd44a 100644 --- a/sound/core/sound.c +++ b/sound/core/sound.c @@ -343,6 +343,8 @@ static const char *snd_device_type_name(int type) return "sequencer"; case SNDRV_DEVICE_TYPE_TIMER: return "timer"; + case SNDRV_DEVICE_TYPE_COMPRESS: + return "compress"; default: return "?"; }