From: Mark Brown Date: Thu, 1 Aug 2024 19:15:22 +0000 (+0100) Subject: ALSA/ASoC: use snd_pcm_direction_name() X-Git-Tag: v6.12-rc1~169^2~1^2~106 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9aafe1dd035fd405c5514e6bea2647c196626dd3;p=thirdparty%2Fkernel%2Flinux.git ALSA/ASoC: use snd_pcm_direction_name() Merge series from Kuninori Morimoto : Many drivers are selecting strings "playback" / "capture" by own handling, but we have snd_pcm_direction_name() function for it. This patch use it. One note is that snd_pcm_direction_name() will select "Playback" and "Capture", instead of "playback" / "capture". Almost all drivers are using it as dev_dbg() or dev_err() so no problem. But some other drivers are using it as other purpose. It might be issue (?). For example ASoC debugfs dir name will be changed by this patch. --- 9aafe1dd035fd405c5514e6bea2647c196626dd3