diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2012-10-20 10:32:46 +0000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-10-23 10:14:54 +1000 |
commit | e0d78d08e3c06ebe2eb45b4d84f8cd5d1b13d371 (patch) | |
tree | 6ce332125bd356256134dd5b2024ba04593323ae /drivers/gpu/drm/drm_fb_cma_helper.c | |
parent | ae168d973f5fa3f3467dc5600f74a0f03e3cafe7 (diff) | |
download | op-kernel-dev-e0d78d08e3c06ebe2eb45b4d84f8cd5d1b13d371.zip op-kernel-dev-e0d78d08e3c06ebe2eb45b4d84f8cd5d1b13d371.tar.gz |
drm: fb: cma: Fix typo in debug message
The debug message showing the resolution of a framebuffer to be
allocated is missing a closing parenthesis.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_fb_cma_helper.c')
-rw-r--r-- | drivers/gpu/drm/drm_fb_cma_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_fb_cma_helper.c b/drivers/gpu/drm/drm_fb_cma_helper.c index 09e11a5..d6c80a3 100644 --- a/drivers/gpu/drm/drm_fb_cma_helper.c +++ b/drivers/gpu/drm/drm_fb_cma_helper.c @@ -206,7 +206,7 @@ static int drm_fbdev_cma_create(struct drm_fb_helper *helper, size_t size; int ret; - DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d\n", + DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d)\n", sizes->surface_width, sizes->surface_height, sizes->surface_bpp); |