mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-29 13:00:35 +00:00
3636a14532
The previous commit introduced one nand device per SoC. Use this directly instead of the compatibility macro that will break for multi-SoC kernels. And while at it remove the compatibility macro now that all in-tree users are fixed. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
extern struct platform_device mxc_gpt1;
|
|
extern struct platform_device mxc_gpt2;
|
|
#ifdef CONFIG_MACH_MX27
|
|
extern struct platform_device mxc_gpt3;
|
|
extern struct platform_device mxc_gpt4;
|
|
extern struct platform_device mxc_gpt5;
|
|
#endif
|
|
extern struct platform_device mxc_wdt;
|
|
extern struct platform_device mxc_uart_device0;
|
|
extern struct platform_device mxc_uart_device1;
|
|
extern struct platform_device mxc_uart_device2;
|
|
extern struct platform_device mxc_uart_device3;
|
|
extern struct platform_device mxc_uart_device4;
|
|
extern struct platform_device mxc_uart_device5;
|
|
extern struct platform_device mxc_w1_master_device;
|
|
#ifdef CONFIG_MACH_MX21
|
|
extern struct platform_device imx21_nand_device;
|
|
#endif
|
|
#ifdef CONFIG_MACH_MX27
|
|
extern struct platform_device imx27_nand_device;
|
|
#endif
|
|
extern struct platform_device mxc_fb_device;
|
|
extern struct platform_device mxc_fec_device;
|
|
extern struct platform_device mxc_pwm_device;
|
|
extern struct platform_device mxc_i2c_device0;
|
|
#ifdef CONFIG_MACH_MX27
|
|
extern struct platform_device mxc_i2c_device1;
|
|
#endif
|
|
extern struct platform_device mxc_sdhc_device0;
|
|
extern struct platform_device mxc_sdhc_device1;
|
|
extern struct platform_device mxc_otg_udc_device;
|
|
extern struct platform_device mxc_otg_host;
|
|
extern struct platform_device mxc_usbh1;
|
|
extern struct platform_device mxc_usbh2;
|
|
extern struct platform_device mxc_spi_device0;
|
|
extern struct platform_device mxc_spi_device1;
|
|
#ifdef CONFIG_MACH_MX27
|
|
extern struct platform_device mxc_spi_device2;
|
|
#endif
|
|
extern struct platform_device imx_ssi_device0;
|
|
extern struct platform_device imx_ssi_device1;
|