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

Commit c0f72f8a authored by Russell King's avatar Russell King
Browse files

ARM: amba: of: convert to use amba_device_alloc



Convert DT code to use the new amba_device_alloc APIs.

Acked-by: default avatarRob Herring <rob.herring@calxeda.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent d5dc9271
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ static struct amba_device *of_amba_device_create(struct device_node *node,
	if (!of_device_is_available(node))
		return NULL;

	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	dev = amba_device_alloc(NULL, 0, 0);
	if (!dev)
		return NULL;

@@ -283,14 +283,14 @@ static struct amba_device *of_amba_device_create(struct device_node *node,
	if (ret)
		goto err_free;

	ret = amba_device_register(dev, &iomem_resource);
	ret = amba_device_add(dev, &iomem_resource);
	if (ret)
		goto err_free;

	return dev;

err_free:
	kfree(dev);
	amba_device_put(dev);
	return NULL;
}
#else /* CONFIG_ARM_AMBA */