[Intel-gfx] [RFC 1/6] drm/armada: Simplify drm_dev_init error log
Tvrtko Ursulin
tursulin at ursulin.net
Wed Jan 24 16:18:16 UTC 2018
From: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
dev_err will log the device in question and since there is a single caller
to drm_dev_init inside this driver, the drm prefix and the function name
can both also be safely dropped.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
Cc: Russell King <linux at armlinux.org.uk>
Cc: David Airlie <airlied at linux.ie>
Cc: dri-devel at lists.freedesktop.org
---
drivers/gpu/drm/armada/armada_drv.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/armada/armada_drv.c b/drivers/gpu/drm/armada/armada_drv.c
index 4b11b6b52f1d..76a06bf6ebcd 100644
--- a/drivers/gpu/drm/armada/armada_drv.c
+++ b/drivers/gpu/drm/armada/armada_drv.c
@@ -115,8 +115,7 @@ static int armada_drm_bind(struct device *dev)
ret = drm_dev_init(&priv->drm, &armada_drm_driver, dev);
if (ret) {
- dev_err(dev, "[" DRM_NAME ":%s] drm_dev_init failed: %d\n",
- __func__, ret);
+ dev_err(dev, "drm_dev_init failed: %d\n", ret);
kfree(priv);
return ret;
}
--
2.14.1
More information about the Intel-gfx
mailing list