| Uwe Kleine-König | 6348e6b | 2010-06-16 15:26:07 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2010 Pengutronix | 
|  | 3 | * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | 
|  | 4 | * | 
|  | 5 | * This program is free software; you can redistribute it and/or modify it under | 
|  | 6 | * the terms of the GNU General Public License version 2 as published by the | 
|  | 7 | * Free Software Foundation. | 
|  | 8 | */ | 
|  | 9 | #include <mach/mx1.h> | 
|  | 10 | #include <mach/devices-common.h> | 
|  | 11 |  | 
| Uwe Kleine-König | 64de5ec | 2010-09-21 12:13:34 +0200 | [diff] [blame] | 12 | extern const struct imx_imx_i2c_data imx1_imx_i2c_data __initconst; | 
| Uwe Kleine-König | 77a406d | 2010-08-25 12:19:50 +0200 | [diff] [blame] | 13 | #define imx1_add_imx_i2c(pdata)		\ | 
| Uwe Kleine-König | 64de5ec | 2010-09-21 12:13:34 +0200 | [diff] [blame] | 14 | imx_add_imx_i2c(&imx1_imx_i2c_data, pdata) | 
| Uwe Kleine-König | d112f4e | 2010-06-22 14:50:59 +0200 | [diff] [blame] | 15 |  | 
| Uwe Kleine-König | 5162de0 | 2010-08-10 22:57:24 +0200 | [diff] [blame] | 16 | extern const struct imx_imx_uart_3irq_data imx1_imx_uart_data[] __initconst; | 
|  | 17 | #define imx1_add_imx_uart(id, pdata)	\ | 
|  | 18 | imx_add_imx_uart_3irq(&imx1_imx_uart_data[id], pdata) | 
|  | 19 | #define imx1_add_imx_uart0(pdata)	imx1_add_imx_uart(0, pdata) | 
|  | 20 | #define imx1_add_imx_uart1(pdata)	imx1_add_imx_uart(1, pdata) |