diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-19 19:04:55 +0900 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2013-09-05 13:43:43 +0900 |
commit | 38bb5253a95f2eb8cb765b7ab88aac686de6cb12 (patch) | |
tree | 519c0c814285338973585a82e51662361514cac7 /drivers/gpu/drm/exynos/exynos_drm_dmabuf.c | |
parent | 3f1c781d9354b3856ba7de64104659a2e2033fd4 (diff) | |
download | lwn-38bb5253a95f2eb8cb765b7ab88aac686de6cb12.tar.gz lwn-38bb5253a95f2eb8cb765b7ab88aac686de6cb12.zip |
drm/exynos: Remove redundant error messages
kzalloc already has built-in error messages. Hence remove
additional ones.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_dmabuf.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_dmabuf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c b/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c index e80e0a807a4b..59827cc5e770 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c +++ b/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c @@ -231,7 +231,6 @@ struct drm_gem_object *exynos_dmabuf_prime_import(struct drm_device *drm_dev, buffer = kzalloc(sizeof(*buffer), GFP_KERNEL); if (!buffer) { - DRM_ERROR("failed to allocate exynos_drm_gem_buf.\n"); ret = -ENOMEM; goto err_unmap_attach; } |