diff options
| author | Andrew Davis <[email protected]> | 2022-07-15 10:25:27 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-07-25 13:02:04 -0400 |
| commit | 80b93bb71cfff8b0ba9bbb5704231216f7518998 (patch) | |
| tree | 06fa61bbf56caa73ff14ef4458925d0ae534114a /drivers | |
| parent | 46da163b723e5623b50df946aa5f9627567397bf (diff) | |
arm: mach-k3: Rename SOC_K3_AM6 to SOC_K3_AM654
The first AM6x device was the AM654x, but being the first we named it
just AM6, since more devices have come out with this same prefix we
should switch it to the normal convention of using the full name of the
first compatibility device the series. This makes what device we are
talking about more clear and matches all the K3 devices added since.
Signed-off-by: Andrew Davis <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/dma/ti/Makefile | 2 | ||||
| -rw-r--r-- | drivers/dma/ti/k3-psil.c | 2 | ||||
| -rw-r--r-- | drivers/ram/Kconfig | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/ti/Makefile b/drivers/dma/ti/Makefile index 56f348700d4..6807eb8e8b2 100644 --- a/drivers/dma/ti/Makefile +++ b/drivers/dma/ti/Makefile @@ -3,7 +3,7 @@ obj-$(CONFIG_TI_K3_NAVSS_UDMA) += k3-udma.o obj-$(CONFIG_TI_K3_PSIL) += k3-psil-data.o k3-psil-data-y += k3-psil.o -k3-psil-data-$(CONFIG_SOC_K3_AM6) += k3-psil-am654.o +k3-psil-data-$(CONFIG_SOC_K3_AM654) += k3-psil-am654.o k3-psil-data-$(CONFIG_SOC_K3_J721E) += k3-psil-j721e.o k3-psil-data-$(CONFIG_SOC_K3_J721S2) += k3-psil-j721s2.o k3-psil-data-$(CONFIG_SOC_K3_AM642) += k3-psil-am64.o diff --git a/drivers/dma/ti/k3-psil.c b/drivers/dma/ti/k3-psil.c index f1330bf4b03..f23c8ca2b74 100644 --- a/drivers/dma/ti/k3-psil.c +++ b/drivers/dma/ti/k3-psil.c @@ -16,7 +16,7 @@ struct psil_endpoint_config *psil_get_ep_config(u32 thread_id) int i; if (!soc_ep_map) { - if (IS_ENABLED(CONFIG_SOC_K3_AM6)) + if (IS_ENABLED(CONFIG_SOC_K3_AM654)) soc_ep_map = &am654_ep_map; else if (IS_ENABLED(CONFIG_SOC_K3_J721E)) soc_ep_map = &j721e_ep_map; diff --git a/drivers/ram/Kconfig b/drivers/ram/Kconfig index 7c346180bae..86857c06272 100644 --- a/drivers/ram/Kconfig +++ b/drivers/ram/Kconfig @@ -45,7 +45,7 @@ config MPC83XX_SDRAM config K3_AM654_DDRSS bool "Enable AM654 DDRSS support" - depends on RAM && SOC_K3_AM6 + depends on RAM && SOC_K3_AM654 help K3 based AM654 devices has DDR memory subsystem that comprises Synopys DDR controller, Synopsis DDR phy and wrapper logic to |
