Merge branch 'drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied...
[pandora-kernel.git] / arch / arm / plat-mxc / devices / platform-flexcan.c
1 /*
2  * Copyright (C) 2010 Pengutronix, Marc Kleine-Budde <kernel@pengutronix.de>
3  *
4  * This program is free software; you can redistribute it and/or modify it under
5  * the terms of the GNU General Public License version 2 as published by the
6  * Free Software Foundation.
7  */
8
9 #include <mach/devices-common.h>
10
11 struct platform_device *__init imx_add_flexcan(int id,
12                 resource_size_t iobase, resource_size_t iosize,
13                 resource_size_t irq,
14                 const struct flexcan_platform_data *pdata)
15 {
16         struct resource res[] = {
17                 {
18                         .start = iobase,
19                         .end = iobase + iosize - 1,
20                         .flags = IORESOURCE_MEM,
21                 }, {
22                         .start = irq,
23                         .end = irq,
24                         .flags = IORESOURCE_IRQ,
25                 },
26         };
27
28         return imx_add_platform_device("flexcan", id, res, ARRAY_SIZE(res),
29                         pdata, sizeof(*pdata));
30 }