Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2148b93a authored by Linus Walleij's avatar Linus Walleij Committed by Russell King
Browse files

ARM: 7589/1: integrator: pass the lm resource to amba



This passes the lm resource to register the AMBA devices on the
LM as contained within the LM resource.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 3ad909bc
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -402,9 +402,10 @@ static int impd1_probe(struct lm_device *dev)

		pc_base = dev->resource.start + idev->offset;
		snprintf(devname, 32, "lm%x:%5.5lx", dev->id, idev->offset >> 12);
		d = amba_ahb_device_add(&dev->dev, devname, pc_base, SZ_4K,
		d = amba_ahb_device_add_res(&dev->dev, devname, pc_base, SZ_4K,
					    dev->irq, dev->irq,
					idev->platform_data, idev->id);
					    idev->platform_data, idev->id,
					    &dev->resource);
		if (IS_ERR(d)) {
			dev_err(&dev->dev, "unable to register device: %ld\n", PTR_ERR(d));
			continue;