Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: SOF: Intel: pci-tgl: Align ADL-N sof_dev_desc struct name to convention

Follow the convention already in use by other platforms on naming the
sof_dev_desc struct by dropping the underscore between adl and n

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://msgid.link/r/20240603072544.5215-1-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Peter Ujfalusi and committed by
Mark Brown
ccdc13ab d8e5fa78

+2 -2
+2 -2
sound/soc/sof/intel/pci-tgl.c
··· 183 183 .ops_free = hda_ops_free, 184 184 }; 185 185 186 - static const struct sof_dev_desc adl_n_desc = { 186 + static const struct sof_dev_desc adln_desc = { 187 187 .machines = snd_soc_acpi_intel_adl_machines, 188 188 .alt_machines = snd_soc_acpi_intel_adl_sdw_machines, 189 189 .use_acpi_target_states = true, ··· 298 298 { PCI_DEVICE_DATA(INTEL, HDA_ADL_PX, &adl_desc) }, 299 299 { PCI_DEVICE_DATA(INTEL, HDA_RPL_M, &rpl_desc) }, 300 300 { PCI_DEVICE_DATA(INTEL, HDA_RPL_PX, &rpl_desc) }, 301 - { PCI_DEVICE_DATA(INTEL, HDA_ADL_N, &adl_n_desc) }, 301 + { PCI_DEVICE_DATA(INTEL, HDA_ADL_N, &adln_desc) }, 302 302 { 0, } 303 303 }; 304 304 MODULE_DEVICE_TABLE(pci, sof_pci_ids);