mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
6423e59a64
We can now enable generic PCI driver in Kconfig, and remove legacy PCI driver code. Radeon vbios quirk is moved to the platform folder to fit the new structure. Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14 lines
416 B
Makefile
14 lines
416 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for Loongson-3 family machines
|
|
#
|
|
obj-$(CONFIG_MACH_LOONGSON64) += cop2-ex.o platform.o dma.o \
|
|
setup.o init.o env.o time.o reset.o \
|
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_NUMA) += numa.o
|
|
obj-$(CONFIG_RS780_HPET) += hpet.o
|
|
obj-$(CONFIG_SUSPEND) += pm.o
|
|
obj-$(CONFIG_PCI_QUIRKS) += vbios_quirk.o
|
|
obj-$(CONFIG_CPU_LOONGSON3_CPUCFG_EMULATION) += cpucfg-emul.o
|