18c2ecf20Sopenharmony_ci# SPDX-License-Identifier: GPL-2.0 28c2ecf20Sopenharmony_ci# 38c2ecf20Sopenharmony_ci# Makefile for the kernel pcmcia subsystem (c/o David Hinds) 48c2ecf20Sopenharmony_ci# 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_cipcmcia_core-y += cs.o socket_sysfs.o 78c2ecf20Sopenharmony_cipcmcia_core-$(CONFIG_CARDBUS) += cardbus.o 88c2ecf20Sopenharmony_ciobj-$(CONFIG_PCCARD) += pcmcia_core.o 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_cipcmcia-y += ds.o pcmcia_resource.o cistpl.o pcmcia_cis.o 118c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA) += pcmcia.o 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_cipcmcia_rsrc-y += rsrc_mgr.o 148c2ecf20Sopenharmony_cipcmcia_rsrc-$(CONFIG_PCCARD_NONSTATIC) += rsrc_nonstatic.o 158c2ecf20Sopenharmony_cipcmcia_rsrc-$(CONFIG_PCCARD_IODYN) += rsrc_iodyn.o 168c2ecf20Sopenharmony_ciobj-$(CONFIG_PCCARD) += pcmcia_rsrc.o 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_ci# socket drivers 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ciobj-$(CONFIG_YENTA) += yenta_socket.o 228c2ecf20Sopenharmony_ci 238c2ecf20Sopenharmony_ciobj-$(CONFIG_PD6729) += pd6729.o 248c2ecf20Sopenharmony_ciobj-$(CONFIG_I82365) += i82365.o 258c2ecf20Sopenharmony_ciobj-$(CONFIG_I82092) += i82092.o 268c2ecf20Sopenharmony_ciobj-$(CONFIG_TCIC) += tcic.o 278c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_SOC_COMMON) += soc_common.o 288c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_SA11XX_BASE) += sa11xx_base.o 298c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_SA1100) += sa1100_cs.o 308c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_SA1111) += sa1111_cs.o 318c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_BCM63XX) += bcm63xx_pcmcia.o 328c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_VRC4171) += vrc4171_card.o 338c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_VRC4173) += vrc4173_cardu.o 348c2ecf20Sopenharmony_ciobj-$(CONFIG_OMAP_CF) += omap_cf.o 358c2ecf20Sopenharmony_ciobj-$(CONFIG_AT91_CF) += at91_cf.o 368c2ecf20Sopenharmony_ciobj-$(CONFIG_ELECTRA_CF) += electra_cf.o 378c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_ALCHEMY_DEVBOARD) += db1xxx_ss.o 388c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_MAX1600) += max1600.o 398c2ecf20Sopenharmony_ci 408c2ecf20Sopenharmony_cisa1111_cs-y += sa1111_generic.o 418c2ecf20Sopenharmony_cisa1111_cs-$(CONFIG_ASSABET_NEPONSET) += sa1111_neponset.o 428c2ecf20Sopenharmony_cisa1111_cs-$(CONFIG_SA1100_BADGE4) += sa1111_badge4.o 438c2ecf20Sopenharmony_cisa1111_cs-$(CONFIG_SA1100_JORNADA720) += sa1111_jornada720.o 448c2ecf20Sopenharmony_cisa1111_cs-$(CONFIG_ARCH_LUBBOCK) += sa1111_lubbock.o 458c2ecf20Sopenharmony_ci 468c2ecf20Sopenharmony_cisa1100_cs-y += sa1100_generic.o 478c2ecf20Sopenharmony_cisa1100_cs-$(CONFIG_SA1100_COLLIE) += pxa2xx_sharpsl.o 488c2ecf20Sopenharmony_cisa1100_cs-$(CONFIG_SA1100_H3100) += sa1100_h3600.o 498c2ecf20Sopenharmony_cisa1100_cs-$(CONFIG_SA1100_H3600) += sa1100_h3600.o 508c2ecf20Sopenharmony_cisa1100_cs-$(CONFIG_SA1100_SIMPAD) += sa1100_simpad.o 518c2ecf20Sopenharmony_ci 528c2ecf20Sopenharmony_cipxa2xx_cm_x2xx_cs-y += pxa2xx_cm_x2xx.o pxa2xx_cm_x255.o pxa2xx_cm_x270.o 538c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_MAINSTONE) += pxa2xx_mainstone.o 548c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_PXA_SHARPSL) += pxa2xx_sharpsl.o 558c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_ARMCORE) += pxa2xx_cm_x2xx_cs.o 568c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_ARCOM_PCMCIA) += pxa2xx_viper.o 578c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_TRIZEPS_PCMCIA) += pxa2xx_trizeps4.o 588c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_PALMTX) += pxa2xx_palmtx.o 598c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_PALMTC) += pxa2xx_palmtc.o 608c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_PALMLD) += pxa2xx_palmld.o 618c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_E740) += pxa2xx_e740.o 628c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_STARGATE2) += pxa2xx_stargate2.o 638c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_VPAC270) += pxa2xx_vpac270.o 648c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_BALLOON3) += pxa2xx_balloon3.o 658c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_COLIBRI) += pxa2xx_colibri.o 668c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_COLIBRI320) += pxa2xx_colibri.o 678c2ecf20Sopenharmony_cipxa2xx-obj-$(CONFIG_MACH_H4700) += pxa2xx_hx4700.o 688c2ecf20Sopenharmony_ci 698c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_PXA2XX) += pxa2xx_base.o $(pxa2xx-obj-y) 708c2ecf20Sopenharmony_ci 718c2ecf20Sopenharmony_ciobj-$(CONFIG_PCMCIA_XXS1500) += xxs1500_ss.o 72