aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2012-01-29 10:28:09 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2012-03-24 11:30:12 +0000
commit22eeaff367ac85a09643b2b8a5af064ec8773f63 (patch)
tree0aa093016d08a78d0f59c24ee76ddf0a692b7f1e
parent924e1d4910a1f7d53f949a92a5d7793e572bb21d (diff)
downloadum-headers-22eeaff367ac85a09643b2b8a5af064ec8773f63.tar.gz
ARM: sa1111: use dev_err() rather than printk()
Use dev_err() to report device specific errors rather than printk(). Acked-by: Nicolas Pitre <nico@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r--arch/arm/common/sa1111.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/common/sa1111.c b/arch/arm/common/sa1111.c
index 8d86338a54ca4e..9173d112ea0156 100644
--- a/arch/arm/common/sa1111.c
+++ b/arch/arm/common/sa1111.c
@@ -655,7 +655,7 @@ sa1111_init_one_child(struct sa1111 *sachip, struct resource *parent,
ret = request_resource(parent, &dev->res);
if (ret) {
- printk("SA1111: failed to allocate resource for %s\n",
+ dev_err(sachip->dev, "failed to allocate resource for %s\n",
dev->res.name);
goto err_resource;
}