diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-29 10:28:09 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-03-24 11:30:12 +0000 |
commit | 22eeaff367ac85a09643b2b8a5af064ec8773f63 (patch) | |
tree | 0aa093016d08a78d0f59c24ee76ddf0a692b7f1e /arch/arm/common | |
parent | 924e1d4910a1f7d53f949a92a5d7793e572bb21d (diff) | |
download | linux-3.10-22eeaff367ac85a09643b2b8a5af064ec8773f63.tar.gz linux-3.10-22eeaff367ac85a09643b2b8a5af064ec8773f63.tar.bz2 linux-3.10-22eeaff367ac85a09643b2b8a5af064ec8773f63.zip |
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>
Diffstat (limited to 'arch/arm/common')
-rw-r--r-- | arch/arm/common/sa1111.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/common/sa1111.c b/arch/arm/common/sa1111.c index 8d86338a54c..9173d112ea0 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; } |