ASoC: tegra: Generic compatible names for driver

The tegra_machine_driver.c now is a generic machine driver which is used
with multiple Jetson platforms and audio cards. Hence get rid of strings
like 'mobile' or 'rt565x' which are misleading in terms of usage domain.

Bug 200717065
Bug 200739452

Change-Id: Ifc2a5bf238cc222ca23681a9764809f6afb2de87
Signed-off-by: Sameer Pujar <spujar@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-5.10/+/2545307
Reviewed-by: svcacv <svcacv@nvidia.com>
Reviewed-by: svc_kernel_abi <svc_kernel_abi@nvidia.com>
Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com>
Reviewed-by: Mohan Kumar D <mkumard@nvidia.com>
Reviewed-by: Asha Talambedu <atalambedu@nvidia.com>
Reviewed-by: Viswanath L <viswanathl@nvidia.com>
Reviewed-by: Sachin Nikam <snikam@nvidia.com>
Reviewed-by: Sharad Gupta <sharadg@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
This commit is contained in:
Sameer Pujar
2021-06-15 17:02:58 +05:30
parent d0c00ff0a7
commit d940c0e813

View File

@@ -1,5 +1,5 @@
/* /*
* tegra_machine_driver_mobile.c - Tegra ASoC Machine driver for mobile * tegra_machine_driver.c - Tegra ASoC Machine driver
* *
* Copyright (c) 2017-2021 NVIDIA CORPORATION. All rights reserved. * Copyright (c) 2017-2021 NVIDIA CORPORATION. All rights reserved.
* *
@@ -308,8 +308,8 @@ static struct snd_soc_card snd_soc_tegra_card = {
/* structure to match device tree node */ /* structure to match device tree node */
static const struct of_device_id tegra_machine_of_match[] = { static const struct of_device_id tegra_machine_of_match[] = {
{ .compatible = "nvidia,tegra-audio-t186ref-mobile-rt565x" }, { .compatible = "nvidia,tegra186-ape" },
{ .compatible = "nvidia,tegra-audio-t210ref-mobile-rt565x" }, { .compatible = "nvidia,tegra210-ape" },
{}, {},
}; };