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