On Mon, May 04, 2026 at 06:27:15PM +0530, Niranjan H Y wrote: > + return 0; > +} > +EXPORT_SYMBOL_GPL(asoc_sdw_ti_tac5xx2_spk_rtd_init); The other helpers in the file are all EXPORT_SYMBOL_NS("SND_SOC_SDW_UTILS") > +int asoc_sdw_ti_dmic_rtd_init(struct snd_soc_pcm_runtime *rtd, struct > + mic_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s", component->name_prefix); > + card->components = devm_kasprintf(card->dev, GFP_KERNEL, > + "%s mic:%s", card->components, > + mic_name); > + if (!card->components) Do we need the local mic_name given that it just gets fed into another printf() or could we just use component->name_prefix directly in the second print?