projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46f3dab
)
drm/i915: Fix FBC1 enable message
author
Ville Syrjälä
<ville.syrjala@linux.intel.com>
Thu, 23 Jan 2014 14:49:16 +0000
(16:49 +0200)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Sat, 25 Jan 2014 20:17:04 +0000
(21:17 +0100)
The debug message telling FBC1 has been enabled is missing a newline.
Add it.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_pm.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_pm.c
b/drivers/gpu/drm/i915/intel_pm.c
index cd031b6640fcdf874b2706d7e43dbd037993e67b..e6693f499d4fcfc3ec979c90832546d4c59839b7 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_pm.c
+++ b/
drivers/gpu/drm/i915/intel_pm.c
@@
-134,7
+134,7
@@
static void i8xx_enable_fbc(struct drm_crtc *crtc)
fbc_ctl |= obj->fence_reg;
I915_WRITE(FBC_CONTROL, fbc_ctl);
- DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c
,
",
+ DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c
\n
",
cfb_pitch, crtc->y, plane_name(intel_crtc->plane));
}