mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-04 02:25:58 +00:00

CPM interrupt controller is quite standalone. Move it into a dedicated file. It will help for next step which will change it to a platform driver. This is pure code move, checkpatch report is ignored at this point, except one parenthesis alignment which would remain at the end of the series. All other points fly away with following patches. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/d3a7dc832d905bed14b35d83410cdb69a7ba20e8.1649226186.git.christophe.leroy@csgroup.eu
13 lines
429 B
Makefile
13 lines
429 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the PowerPC 8xx linux kernel.
|
|
#
|
|
obj-y += m8xx_setup.o machine_check.o pic.o
|
|
obj-$(CONFIG_CPM1) += cpm1.o cpm1-ic.o
|
|
obj-$(CONFIG_UCODE_PATCH) += micropatch.o
|
|
obj-$(CONFIG_MPC885ADS) += mpc885ads_setup.o
|
|
obj-$(CONFIG_MPC86XADS) += mpc86xads_setup.o
|
|
obj-$(CONFIG_PPC_EP88XC) += ep88xc.o
|
|
obj-$(CONFIG_PPC_ADDER875) += adder875.o
|
|
obj-$(CONFIG_TQM8XX) += tqm8xx_setup.o
|