mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
3819ad4402
Remove all the legacy clk code that supports a non-common clk framework
implementation of 'struct clk' in mach-mmp. This code doesn't look to be
compiled anymore given that the MMP is fully supported in the
multi-platform config via ARCH_MULTIPLATFORM as of commit 377524dc4d
("ARM: mmp: move into ARCH_MULTIPLATFORM"). The ARCH_MULTIPLATFORM
config selects COMMON_CLK and therefore the Makefile rule can never
actually compile the code in these files.
Cc: Lubomir Rintel <lkundrak@v3.sk>
Cc: Russell King <linux@armlinux.org.uk>
Cc: <linux-arm-kernel@lists.infradead.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lkml.kernel.org/r/20200409064416.83340-9-sboyd@kernel.org
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
[sboyd@kernel.org: Squash in a clock.h include removal found by Stephen
Rothwell <sfr@canb.auug.org.au>]
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for Marvell's PXA168 processors line
|
|
#
|
|
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/arch/arm/plat-pxa/include
|
|
|
|
obj-y += common.o devices.o time.o
|
|
|
|
# SoC support
|
|
obj-$(CONFIG_CPU_PXA168) += pxa168.o
|
|
obj-$(CONFIG_CPU_PXA910) += pxa910.o
|
|
obj-$(CONFIG_CPU_MMP2) += mmp2.o
|
|
obj-$(CONFIG_MMP_SRAM) += sram.o
|
|
|
|
ifeq ($(CONFIG_PM),y)
|
|
obj-$(CONFIG_CPU_PXA910) += pm-pxa910.o
|
|
obj-$(CONFIG_CPU_MMP2) += pm-mmp2.o
|
|
endif
|
|
ifeq ($(CONFIG_SMP),y)
|
|
obj-$(CONFIG_MACH_MMP3_DT) += platsmp.o
|
|
endif
|
|
|
|
# board support
|
|
obj-$(CONFIG_MACH_ASPENITE) += aspenite.o
|
|
obj-$(CONFIG_MACH_ZYLONITE2) += aspenite.o
|
|
obj-$(CONFIG_MACH_AVENGERS_LITE)+= avengers_lite.o
|
|
obj-$(CONFIG_MACH_TAVOREVB) += tavorevb.o
|
|
obj-$(CONFIG_MACH_TTC_DKB) += ttc_dkb.o
|
|
obj-$(CONFIG_MACH_BROWNSTONE) += brownstone.o
|
|
obj-$(CONFIG_MACH_FLINT) += flint.o
|
|
obj-$(CONFIG_MACH_MARVELL_JASPER) += jasper.o
|
|
obj-$(CONFIG_MACH_MMP_DT) += mmp-dt.o
|
|
obj-$(CONFIG_MACH_MMP2_DT) += mmp2-dt.o
|
|
obj-$(CONFIG_MACH_MMP3_DT) += mmp3.o
|
|
obj-$(CONFIG_MACH_TETON_BGA) += teton_bga.o
|
|
obj-$(CONFIG_MACH_GPLUGD) += gplugd.o
|