09.04.2020 20:52, Thierry Reding пишет: > From: Thierry Reding <treding@xxxxxxxxxx> > > This code is only used on Tegra124, so rename it accordingly to make it > more consistent with other file names. > > Signed-off-by: Thierry Reding <treding@xxxxxxxxxx> > --- > drivers/clk/tegra/Makefile | 2 +- > drivers/clk/tegra/{clk-emc.c => clk-tegra124-emc.c} | 0 > 2 files changed, 1 insertion(+), 1 deletion(-) > rename drivers/clk/tegra/{clk-emc.c => clk-tegra124-emc.c} (100%) > > diff --git a/drivers/clk/tegra/Makefile b/drivers/clk/tegra/Makefile > index 1f7c30f87ece..dec508ef2ada 100644 > --- a/drivers/clk/tegra/Makefile > +++ b/drivers/clk/tegra/Makefile > @@ -14,7 +14,6 @@ obj-y += clk-tegra-audio.o > obj-y += clk-tegra-periph.o > obj-y += clk-tegra-fixed.o > obj-y += clk-tegra-super-gen4.o > -obj-$(CONFIG_TEGRA_CLK_EMC) += clk-emc.o > obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += clk-tegra20.o > obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += clk-tegra20-emc.o > obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += clk-tegra30.o > @@ -22,6 +21,7 @@ obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += clk-tegra20-emc.o > obj-$(CONFIG_ARCH_TEGRA_114_SOC) += clk-tegra114.o > obj-$(CONFIG_ARCH_TEGRA_124_SOC) += clk-tegra124.o > obj-$(CONFIG_TEGRA_CLK_DFLL) += clk-tegra124-dfll-fcpu.o > +obj-$(CONFIG_TEGRA_CLK_EMC) += clk-tegra124-emc.o What about to rename CONFIG_TEGRA_CLK_EMC to CONFIG_TEGRA124_CLK_EMC as well? Also.. maybe the CONFIG_TEGRA_CLK_EMC isn't really needed at all and the TEGRA124_EMC of memory/tegra could be re-used here?