From: Mark Brown Date: Thu, 1 Aug 2024 19:15:22 +0000 (+0100) Subject: ALSA/ASoC: use snd_pcm_direction_name() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=9aafe1dd035fd405c5514e6bea2647c196626dd3;p=users%2Fjedix%2Flinux-maple.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