staging: erofs: integrate decompression inplace
[linux/fpc-iii.git] / drivers / pcmcia / pxa2xx_cm_x2xx.c
blob14eae238131dac3f72acbee5e7a4eb92ac2fc907
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * linux/drivers/pcmcia/pxa/pxa_cm_x2xx.c
5 * Compulab Ltd., 2003, 2007, 2008
6 * Mike Rapoport <mike@compulab.co.il>
7 */
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)
21 int ret = -ENODEV;
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();
28 return ret;
31 static void __exit cmx2xx_pcmcia_exit(void)
33 if (machine_is_armcore() && cpu_is_pxa25x())
34 cmx255_pcmcia_exit();
35 else if (machine_is_armcore() && cpu_is_pxa27x())
36 cmx270_pcmcia_exit();
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");