diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2009-02-01 20:53:26 +0300 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-02-01 20:53:26 +0300 |
commit | de8696203e64f19ea26f8e096ac8a796e78216b3 (patch) | |
tree | d932f2f04d6c81c75c5104ae86b1e5d47e6591e3 /arch/arm/plat-omap/devices.c | |
parent | 807a96cd0e5f5311e7f7a1030b43aab624cd7d9f (diff) | |
parent | 0dc23d704874e892c3fb5f2c0e4dfbef3c9c6edf (diff) | |
download | linux-de8696203e64f19ea26f8e096ac8a796e78216b3.tar.xz |
Merge branch 'omap-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
Diffstat (limited to 'arch/arm/plat-omap/devices.c')
-rw-r--r-- | arch/arm/plat-omap/devices.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/plat-omap/devices.c b/arch/arm/plat-omap/devices.c index ac15c23fd5da..208dbb121f47 100644 --- a/arch/arm/plat-omap/devices.c +++ b/arch/arm/plat-omap/devices.c @@ -200,14 +200,15 @@ void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config, /* * Register MMC devices. Called from mach-omap1 and mach-omap2 device init. */ -int __init omap_mmc_add(int id, unsigned long base, unsigned long size, - unsigned int irq, struct omap_mmc_platform_data *data) +int __init omap_mmc_add(const char *name, int id, unsigned long base, + unsigned long size, unsigned int irq, + struct omap_mmc_platform_data *data) { struct platform_device *pdev; struct resource res[OMAP_MMC_NR_RES]; int ret; - pdev = platform_device_alloc("mmci-omap", id); + pdev = platform_device_alloc(name, id); if (!pdev) return -ENOMEM; |