[PATCH 5/6] imx/devices: switch to add_generic_device
Jean-Christophe PLAGNIOL-VILLARD
plagnioj at jcrosoft.com
Fri Jul 22 11:38:38 EDT 2011
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
---
arch/arm/mach-imx/devices.c | 19 +++----------------
1 files changed, 3 insertions(+), 16 deletions(-)
diff --git a/arch/arm/mach-imx/devices.c b/arch/arm/mach-imx/devices.c
index 6503c30..d2cf1e6 100644
--- a/arch/arm/mach-imx/devices.c
+++ b/arch/arm/mach-imx/devices.c
@@ -2,23 +2,10 @@
#include <driver.h>
#include <mach/devices.h>
-static struct device_d *imx_add_device(char *name, int id, void *base, int size, void *pdata)
+static struct inline device_d *imx_add_device(char *name, int id, void *base, int size, void *pdata)
{
- struct device_d *dev;
-
- dev = xzalloc(sizeof(*dev));
- strcpy(dev->name,name);
- dev->id = id;
- dev->resource = xzalloc(sizeof(struct resource));
- dev->resource[0].start = (resource_size_t)base;
- dev->resource[0].size = size;
- dev->resource[0].flags = IORESOURCE_MEM;
- dev->num_resources = 1;
- dev->platform_data = pdata;
-
- register_device(dev);
-
- return 0;
+ return add_generic_device(name, id, NULL, (resource_size_t)start, size,
+ IORESOURCE_MEM, pada);
}
struct device_d *imx_add_fec(void *base, struct fec_platform_data *pdata)
--
1.7.5.4
More information about the barebox
mailing list