mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 06:39:05 +00:00

We no longer support any boards with the da830 SoC in mainline linux. Let's remove all bits and pieces related to it. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Reviewed-by: Kevin Hilman <khilman@baylibre.com> Reviewed-by: David Lechner <dlechner@baylibre.com> Link: https://lore.kernel.org/r/20250407-davinci-remove-da830-v1-1-39f803dd5a14@linaro.org Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
22 lines
419 B
Makefile
22 lines
419 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
#
|
|
#
|
|
# Common objects
|
|
obj-y := common.o sram.o devices-da8xx.o
|
|
|
|
obj-$(CONFIG_DAVINCI_MUX) += mux.o
|
|
|
|
# Chip specific
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA850) += da850.o pdata-quirks.o
|
|
|
|
obj-y += da8xx-dt.o
|
|
|
|
# Power Management
|
|
obj-$(CONFIG_HAVE_CLK) += pm_domain.o
|
|
ifeq ($(CONFIG_SUSPEND),y)
|
|
obj-$(CONFIG_ARCH_DAVINCI_DA850) += pm.o sleep.o
|
|
endif
|