 e0557c0d1a
			
		
	
	
	e0557c0d1a
	
	
	
		
			
			It moves platform device code from plat-mxc into mach-imx. Along with that, header devices-common.h gets moved from plat-mxc/include/mach/ into mach-imx/devices/. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Arnd Bergmann <arnd@arndb.de>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2010 Pengutronix
 | |
|  * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or modify it under
 | |
|  * the terms of the GNU General Public License version 2 as published by the
 | |
|  * Free Software Foundation.
 | |
|  */
 | |
| #include "devices/devices-common.h"
 | |
| 
 | |
| extern const struct imx_imx_fb_data imx1_imx_fb_data;
 | |
| #define imx1_add_imx_fb(pdata) \
 | |
|     imx_add_imx_fb(&imx1_imx_fb_data, pdata)
 | |
| 
 | |
| extern const struct imx_imx_i2c_data imx1_imx_i2c_data;
 | |
| #define imx1_add_imx_i2c(pdata)		\
 | |
| 	imx_add_imx_i2c(&imx1_imx_i2c_data, pdata)
 | |
| 
 | |
| extern const struct imx_imx_uart_3irq_data imx1_imx_uart_data[];
 | |
| #define imx1_add_imx_uart(id, pdata)	\
 | |
| 	imx_add_imx_uart_3irq(&imx1_imx_uart_data[id], pdata)
 | |
| #define imx1_add_imx_uart0(pdata)	imx1_add_imx_uart(0, pdata)
 | |
| #define imx1_add_imx_uart1(pdata)	imx1_add_imx_uart(1, pdata)
 | |
| 
 | |
| extern const struct imx_spi_imx_data imx1_cspi_data[];
 | |
| #define imx1_add_cspi(id, pdata)   \
 | |
| 	imx_add_spi_imx(&imx1_cspi_data[id], pdata)
 | |
| 
 | |
| #define imx1_add_spi_imx0(pdata) imx1_add_cspi(0, pdata)
 | |
| #define imx1_add_spi_imx1(pdata) imx1_add_cspi(1, pdata)
 |