b4aed01de4
The interest of maintaining the DaVinci DM644x board files seems very low. Patches to convert the EVM board to use GPIO descriptors has not been reviewed, tested or merged for several merge windows in a row, see link below. When I look in the logs for the board files I see nothing but generic kernel maintenance and no testing on real hardware for years. I conclude the DM646x board files are unused and can be deleted. Cc: Kevin Hilman <khilman@baylibre.com> Cc: Arnd Bergmann <arnd@kernel.org> Cc: Matt Porter <mporter@konsulko.com> Cc: Sekhar Nori <nsekhar@ti.com> Cc: Bartosz Golaszewski <bgolaszewski@baylibre.com> Link: https://lore.kernel.org/linux-arm-kernel/20220507124536.171930-2-linus.walleij@linaro.org/ Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
#
|
|
#
|
|
# Common objects
|
|
obj-y := serial.o usb.o common.o sram.o
|
|
|
|
obj-$(CONFIG_DAVINCI_MUX) += mux.o
|
|
|
|
# Chip specific
|
|
obj-$(CONFIG_ARCH_DAVINCI_DM355) += dm355.o devices.o
|
|
obj-$(CONFIG_ARCH_DAVINCI_DM365) += dm365.o devices.o
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA830) += da830.o devices-da8xx.o usb-da8xx.o
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA850) += da850.o devices-da8xx.o usb-da8xx.o
|
|
|
|
# Board specific
|
|
obj-$(CONFIG_MACH_DA8XX_DT) += da8xx-dt.o pdata-quirks.o
|
|
obj-$(CONFIG_MACH_DAVINCI_DM355_EVM) += board-dm355-evm.o
|
|
obj-$(CONFIG_MACH_DM355_LEOPARD) += board-dm355-leopard.o
|
|
obj-$(CONFIG_MACH_DAVINCI_DM365_EVM) += board-dm365-evm.o
|
|
obj-$(CONFIG_MACH_DAVINCI_DA830_EVM) += board-da830-evm.o
|
|
obj-$(CONFIG_MACH_DAVINCI_DA850_EVM) += board-da850-evm.o
|
|
obj-$(CONFIG_MACH_MITYOMAPL138) += board-mityomapl138.o
|
|
obj-$(CONFIG_MACH_OMAPL138_HAWKBOARD) += board-omapl138-hawk.o
|
|
|
|
# Power Management
|
|
obj-$(CONFIG_CPU_IDLE) += cpuidle.o
|
|
obj-$(CONFIG_HAVE_CLK) += pm_domain.o
|
|
ifeq ($(CONFIG_SUSPEND),y)
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA850) += pm.o sleep.o
|
|
endif
|