summaryrefslogtreecommitdiff
path: root/src/gralloc/gralloc_mod.c
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2011-06-17 15:50:22 +0200
committerHugues Hiegel <hugues@hiegel.fr>2011-06-17 15:50:22 +0200
commitd58e3fa353c5df8028413837a366a16ff6054015 (patch)
treeb8c96350fcc79317192ba5704934f7cbf2cdf140 /src/gralloc/gralloc_mod.c
parent43894e0b38b5285f6b0816cf8178e9642fc60d7c (diff)
Revert "Verbose output for radeon/drm"
This reverts commit df1458659d427f8664c59dc5a4622da15a18b640.
Diffstat (limited to 'src/gralloc/gralloc_mod.c')
-rw-r--r--src/gralloc/gralloc_mod.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gralloc/gralloc_mod.c b/src/gralloc/gralloc_mod.c
index 7f708616c8..bc0786eb3e 100644
--- a/src/gralloc/gralloc_mod.c
+++ b/src/gralloc/gralloc_mod.c
@@ -138,22 +138,18 @@ drm_mod_alloc_gpu0(alloc_device_t *dev, int w, int h, int format, int usage,
struct drm_bo_t *bo;
int size, bpp, ret;
- LOGE("PFO gralloc line : %d", __LINE__);
ret = drm_gem_drv_init(drm);
if (ret)
return ret;
- LOGE("PFO gralloc line : %d", __LINE__);
bpp = drm_mod_get_bpp(format);
if (!bpp)
return -EINVAL;
- LOGE("PFO gralloc line : %d", __LINE__);
bo = drm_gem_drv_alloc(drm, w, h, format, usage, stride);
if (!bo)
return -EINVAL;
- LOGE("PFO gralloc line : %d", __LINE__);
- if (bo->usage & GRALLOC_USAGE_HW_FB) {
+ if (bo->usage & GRALLOC_USAGE_HW_FB) {
ret = drm_kms_add_fb(drm, bo);
if (ret) {
LOGE("failed to add fb");