Commit 4fd26cb1 authored by Ilia Mirkin's avatar Ilia Mirkin Committed by Ben Skeggs

drm/nouveau/fbcon/gf100-: reduce RING_SPACE allocation

We only emit 58 words to the ring, not 60.
Signed-off-by: default avatarIlia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent d108142c
...@@ -188,7 +188,7 @@ nvc0_fbcon_accel_init(struct fb_info *info) ...@@ -188,7 +188,7 @@ nvc0_fbcon_accel_init(struct fb_info *info)
return -EINVAL; return -EINVAL;
} }
ret = RING_SPACE(chan, 60); ret = RING_SPACE(chan, 58);
if (ret) { if (ret) {
WARN_ON(1); WARN_ON(1);
nouveau_fbcon_gpu_lockup(info); nouveau_fbcon_gpu_lockup(info);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment