1*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0 2*4882a593Smuzhiyun# 3*4882a593Smuzhiyun# Makefile for the 8250 serial device drivers. 4*4882a593Smuzhiyun# 5*4882a593Smuzhiyun 6*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250) += 8250.o 8250_base.o 7*4882a593Smuzhiyun8250-y := 8250_core.o 8*4882a593Smuzhiyun8250-$(CONFIG_SERIAL_8250_PNP) += 8250_pnp.o 9*4882a593Smuzhiyun8250_base-y := 8250_port.o 10*4882a593Smuzhiyun8250_base-$(CONFIG_SERIAL_8250_DMA) += 8250_dma.o 11*4882a593Smuzhiyun8250_base-$(CONFIG_SERIAL_8250_DWLIB) += 8250_dwlib.o 12*4882a593Smuzhiyun8250_base-$(CONFIG_SERIAL_8250_FINTEK) += 8250_fintek.o 13*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_GSC) += 8250_gsc.o 14*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_PCI) += 8250_pci.o 15*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_EXAR) += 8250_exar.o 16*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_HP300) += 8250_hp300.o 17*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_CS) += serial_cs.o 18*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_ACORN) += 8250_acorn.o 19*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_ASPEED_VUART) += 8250_aspeed_vuart.o 20*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_BCM2835AUX) += 8250_bcm2835aux.o 21*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_CONSOLE) += 8250_early.o 22*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_FOURPORT) += 8250_fourport.o 23*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_ACCENT) += 8250_accent.o 24*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_BOCA) += 8250_boca.o 25*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_EXAR_ST16C554) += 8250_exar_st16c554.o 26*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_HUB6) += 8250_hub6.o 27*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_FSL) += 8250_fsl.o 28*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_MEN_MCB) += 8250_men_mcb.o 29*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_DW) += 8250_dw.o 30*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_EM) += 8250_em.o 31*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_IOC3) += 8250_ioc3.o 32*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_OMAP) += 8250_omap.o 33*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_LPC18XX) += 8250_lpc18xx.o 34*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_MT6577) += 8250_mtk.o 35*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_UNIPHIER) += 8250_uniphier.o 36*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_INGENIC) += 8250_ingenic.o 37*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_LPSS) += 8250_lpss.o 38*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_MID) += 8250_mid.o 39*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_PXA) += 8250_pxa.o 40*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_8250_TEGRA) += 8250_tegra.o 41*4882a593Smuzhiyunobj-$(CONFIG_SERIAL_OF_PLATFORM) += 8250_of.o 42*4882a593Smuzhiyun 43*4882a593SmuzhiyunCFLAGS_8250_ingenic.o += -I$(srctree)/scripts/dtc/libfdt 44