diff options
author | Joe Perches <joe@perches.com> | 2012-10-28 01:05:41 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-30 17:38:43 -0700 |
commit | a369a7ebbfce5caa38e3d5645ea050f4590dea7a (patch) | |
tree | f2738a86dc0b06ad0e4853afe6a5cba80ac7cfe7 /drivers/base/attribute_container.c | |
parent | b1d6d822550ee4e71ab9d55e65f8e096fb11e62b (diff) | |
download | op-kernel-dev-a369a7ebbfce5caa38e3d5645ea050f4590dea7a.zip op-kernel-dev-a369a7ebbfce5caa38e3d5645ea050f4590dea7a.tar.gz |
drivers: base: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
dev_<level> calls take less code than dev_printk(KERN_<LEVEL>
and reducing object size is good.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/base/attribute_container.c')
-rw-r--r-- | drivers/base/attribute_container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/attribute_container.c b/drivers/base/attribute_container.c index 8fc200b..d78b204 100644 --- a/drivers/base/attribute_container.c +++ b/drivers/base/attribute_container.c @@ -158,7 +158,7 @@ attribute_container_add_device(struct device *dev, ic = kzalloc(sizeof(*ic), GFP_KERNEL); if (!ic) { - dev_printk(KERN_ERR, dev, "failed to allocate class container\n"); + dev_err(dev, "failed to allocate class container\n"); continue; } |