From: Pierre Ossman Date: Sun, 6 Aug 2006 23:40:04 +0000 (+0200) Subject: [MMC] Another stray 'io' reference X-Git-Tag: v3.12-rc1~34306^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd2c609c59cd9daeb90d58f3d1bc3813e8987df1;p=kernel%2Fkernel-generic.git [MMC] Another stray 'io' reference Another misuse of the global 'io' variable instead of the local 'base'. Signed-off-by: Pierre Ossman Signed-off-by: Russell King --- diff --git a/drivers/mmc/wbsd.c b/drivers/mmc/wbsd.c index ce86887..c351c6d 100644 --- a/drivers/mmc/wbsd.c +++ b/drivers/mmc/wbsd.c @@ -1773,7 +1773,7 @@ static int __devinit wbsd_init(struct device *dev, int base, int irq, int dma, /* * Request resources. */ - ret = wbsd_request_resources(host, io, irq, dma); + ret = wbsd_request_resources(host, base, irq, dma); if (ret) { wbsd_release_resources(host); wbsd_free_mmc(dev); @@ -1861,6 +1861,7 @@ static void __devexit wbsd_shutdown(struct device *dev, int pnp) static int __devinit wbsd_probe(struct platform_device *dev) { + /* Use the module parameters for resources */ return wbsd_init(&dev->dev, io, irq, dma, 0); }