mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

usb.c contains three independent parts with no common part. Split it. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> [mpe: Drop usb.o from Makefile to fix build] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/75712b54bf9cb85ab10e47cd2772cd2a098ca895.1692199324.git.christophe.leroy@csgroup.eu
19 lines
656 B
Makefile
19 lines
656 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the PowerPC 83xx linux kernel.
|
|
#
|
|
obj-y := misc.o
|
|
obj-$(CONFIG_SUSPEND) += suspend.o suspend-asm.o
|
|
obj-$(CONFIG_MCU_MPC8349EMITX) += mcu_mpc8349emitx.o
|
|
obj-$(CONFIG_MPC830x_RDB) += mpc830x_rdb.o
|
|
obj-$(CONFIG_MPC831x_RDB) += mpc831x_rdb.o
|
|
obj-$(CONFIG_MPC832x_RDB) += mpc832x_rdb.o
|
|
obj-$(CONFIG_MPC834x_ITX) += mpc834x_itx.o
|
|
obj-$(CONFIG_MPC836x_RDK) += mpc836x_rdk.o
|
|
obj-$(CONFIG_MPC837x_RDB) += mpc837x_rdb.o
|
|
obj-$(CONFIG_ASP834x) += asp834x.o
|
|
obj-$(CONFIG_KMETER1) += km83xx.o
|
|
obj-$(CONFIG_PPC_MPC831x) += usb_831x.o
|
|
obj-$(CONFIG_PPC_MPC834x) += usb_834x.o
|
|
obj-$(CONFIG_PPC_MPC837x) += usb_837x.o
|