Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.29 49 lines 1.2 kB view raw
1/* 2 * linux/drivers/pcmcia/pxa/pxa_cm_x2xx.c 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 * 8 * Compulab Ltd., 2003, 2007, 2008 9 * Mike Rapoport <mike@compulab.co.il> 10 * 11 */ 12 13#include <linux/module.h> 14 15#include <asm/system.h> 16#include <asm/mach-types.h> 17#include <mach/system.h> 18 19int cmx255_pcmcia_init(void); 20int cmx270_pcmcia_init(void); 21void cmx255_pcmcia_exit(void); 22void cmx270_pcmcia_exit(void); 23 24static int __init cmx2xx_pcmcia_init(void) 25{ 26 int ret = -ENODEV; 27 28 if (machine_is_armcore() && cpu_is_pxa25x()) 29 ret = cmx255_pcmcia_init(); 30 else if (machine_is_armcore() && cpu_is_pxa27x()) 31 ret = cmx270_pcmcia_init(); 32 33 return ret; 34} 35 36static void __exit cmx2xx_pcmcia_exit(void) 37{ 38 if (machine_is_armcore() && cpu_is_pxa25x()) 39 cmx255_pcmcia_exit(); 40 else if (machine_is_armcore() && cpu_is_pxa27x()) 41 cmx270_pcmcia_exit(); 42} 43 44module_init(cmx2xx_pcmcia_init); 45module_exit(cmx2xx_pcmcia_exit); 46 47MODULE_LICENSE("GPL"); 48MODULE_AUTHOR("Mike Rapoport <mike@compulab.co.il>"); 49MODULE_DESCRIPTION("CM-x2xx PCMCIA driver");