1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/pcmcia/pxa/pxa_cm_x2xx.c
5 * Compulab Ltd., 2003, 2007, 2008
6 * Mike Rapoport <mike@compulab.co.il>
9 #include <linux/module.h>
11 #include <asm/mach-types.h>
12 #include <mach/hardware.h>
14 int cmx255_pcmcia_init(void);
15 int cmx270_pcmcia_init(void);
16 void cmx255_pcmcia_exit(void);
17 void cmx270_pcmcia_exit(void);
19 static int __init cmx2xx_pcmcia_init(void)
23 if (machine_is_armcore() && cpu_is_pxa25x())
24 ret = cmx255_pcmcia_init();
25 else if (machine_is_armcore() && cpu_is_pxa27x())
26 ret = cmx270_pcmcia_init();
31 static void __exit cmx2xx_pcmcia_exit(void)
33 if (machine_is_armcore() && cpu_is_pxa25x())
35 else if (machine_is_armcore() && cpu_is_pxa27x())
39 module_init(cmx2xx_pcmcia_init);
40 module_exit(cmx2xx_pcmcia_exit);
42 MODULE_LICENSE("GPL");
43 MODULE_AUTHOR("Mike Rapoport <mike@compulab.co.il>");
44 MODULE_DESCRIPTION("CM-x2xx PCMCIA driver");