1 #ifndef __MACH_MXM_8X10_H 2 #define __MACH_MXM_8X10_H 3 4 #define MXM_8X10_ETH_PHYS 0x13000000 5 6 #if defined(CONFIG_MMC) 7 8 #define MXM_8X10_SD_nCD (72) 9 #define MXM_8X10_SD_WP (84) 10 11 extern void mxm_8x10_mmc_init(void); 12 #else mxm_8x10_mmc_init(void)13static inline void mxm_8x10_mmc_init(void) {} 14 #endif 15 16 extern void mxm_8x10_usb_host_init(void); 17 extern void mxm_8x10_ac97_init(void); 18 19 extern void mxm_8x10_barebones_init(void); 20 21 #endif /* __MACH_MXM_8X10_H */ 22