Commit 9a25706b authored by Russell King's avatar Russell King
Browse files

ARM: amba: integrator: convert to use amba_device_alloc



Convert Integrator IM/PD-1 to use the new amba_device_alloc APIs.

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 46d4bb9b
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -401,24 +401,21 @@ static int impd1_probe(struct lm_device *dev)

		pc_base = dev->resource.start + idev->offset;

		d = kzalloc(sizeof(struct amba_device), GFP_KERNEL);
		d = amba_device_alloc(NULL, pc_base, SZ_4K);
		if (!d)
			continue;

		dev_set_name(&d->dev, "lm%x:%5.5lx", dev->id, idev->offset >> 12);
		d->dev.parent	= &dev->dev;
		d->res.start	= dev->resource.start + idev->offset;
		d->res.end	= d->res.start + SZ_4K - 1;
		d->res.flags	= IORESOURCE_MEM;
		d->irq[0]	= dev->irq;
		d->irq[1]	= dev->irq;
		d->periphid	= idev->id;
		d->dev.platform_data = idev->platform_data;

		ret = amba_device_register(d, &dev->resource);
		ret = amba_device_add(d, &dev->resource);
		if (ret) {
			dev_err(&d->dev, "unable to register device: %d\n", ret);
			kfree(d);
			amba_device_put(d);
		}
	}