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-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2c28156d88aa36ee8d45a3e68cc7eaa7d919dd96;p=linux.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 2f759febe3650..af89e51dd44a6 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 "?"; }