mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
b0a6ba5ffb
1. some macro definitions fix 2. add platform data for spi device 3. register spi clocks Signed-off-by: Yong Shen <yong.shen@freescale.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2010 Yong Shen. <Yong.Shen@linaro.org>
|
|
*
|
|
* 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 <mach/mx53.h>
|
|
#include <mach/devices-common.h>
|
|
|
|
extern const struct imx_fec_data imx53_fec_data __initconst;
|
|
#define imx53_add_fec(pdata) \
|
|
imx_add_fec(&imx53_fec_data, pdata)
|
|
|
|
extern const struct imx_imx_uart_1irq_data imx53_imx_uart_data[] __initconst;
|
|
#define imx53_add_imx_uart(id, pdata) \
|
|
imx_add_imx_uart_1irq(&imx53_imx_uart_data[id], pdata)
|
|
|
|
|
|
extern const struct imx_imx_i2c_data imx53_imx_i2c_data[] __initconst;
|
|
#define imx53_add_imx_i2c(id, pdata) \
|
|
imx_add_imx_i2c(&imx53_imx_i2c_data[id], pdata)
|
|
|
|
extern const struct imx_sdhci_esdhc_imx_data
|
|
imx53_sdhci_esdhc_imx_data[] __initconst;
|
|
#define imx53_add_sdhci_esdhc_imx(id, pdata) \
|
|
imx_add_sdhci_esdhc_imx(&imx53_sdhci_esdhc_imx_data[id], pdata)
|
|
|
|
extern const struct imx_spi_imx_data imx53_ecspi_data[] __initconst;
|
|
#define imx53_add_ecspi(id, pdata) \
|
|
imx_add_spi_imx(&imx53_ecspi_data[id], pdata)
|