struct snd_soc_dapm_path结构体用于连接两个widgets,生成path实例的入口函数是snd_soc_dapm_add_path()。 字段解释 structsnd_soc_dapm_path{constchar*name;/* source (input) and sink (output) widgets */structsnd_soc_dapm_widget*source;// 指向源部件structsnd_soc_dapm_widget*sink;// 指向目的部件...