summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/devices/platform-flexcan.c
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2013-06-10 23:12:56 -0300
committerMarc Kleine-Budde <mkl@pengutronix.de>2013-06-27 15:15:08 +0200
commit30caa4b763bf5973800633de55bae586ab443f78 (patch)
treec109c7d1394a18d9b72fafe3aff8f6d160612ee9 /arch/arm/mach-imx/devices/platform-flexcan.c
parent38ae92dc215e939897f17861d658f882d0eaab0f (diff)
downloadlinux-30caa4b763bf5973800633de55bae586ab443f78.tar.bz2
ARM: imx: prepare for removal of flexcan_platform_data
As there are no imx in-tree users of flexcan_platform_data, this patch removes the possibility to register a flexcan device with platform data. The functionality to swith on/off CAN transceivers is added to DT via regulators in a later patch. Compile time tested with imx_v4_v5_defconfig and imx_v6_v7_defconfig. Acked-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx/devices/platform-flexcan.c')
-rw-r--r--arch/arm/mach-imx/devices/platform-flexcan.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-imx/devices/platform-flexcan.c b/arch/arm/mach-imx/devices/platform-flexcan.c
index 1078bf0a94ef..55d61eaf63c6 100644
--- a/arch/arm/mach-imx/devices/platform-flexcan.c
+++ b/arch/arm/mach-imx/devices/platform-flexcan.c
@@ -38,8 +38,7 @@ const struct imx_flexcan_data imx35_flexcan_data[] __initconst = {
#endif /* ifdef CONFIG_SOC_IMX35 */
struct platform_device *__init imx_add_flexcan(
- const struct imx_flexcan_data *data,
- const struct flexcan_platform_data *pdata)
+ const struct imx_flexcan_data *data)
{
struct resource res[] = {
{
@@ -54,5 +53,5 @@ struct platform_device *__init imx_add_flexcan(
};
return imx_add_platform_device("flexcan", data->id,
- res, ARRAY_SIZE(res), pdata, sizeof(*pdata));
+ res, ARRAY_SIZE(res), NULL, 0);
}