diff options
author | Ilia Mirkin <imirkin@alum.mit.edu> | 2015-06-29 20:43:46 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2015-07-27 04:56:10 -0400 |
commit | 4fd26cb1e4049c7a630d86d52864a5722c7453ac (patch) | |
tree | b4e8f7a7d51d4efecf9a55a78b77a35940be8508 | |
parent | d108142c0840ce389cd9898aa76943b3fb430b83 (diff) |
drm/nouveau/fbcon/gf100-: reduce RING_SPACE allocation
We only emit 58 words to the ring, not 60.
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/nvc0_fbcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nvc0_fbcon.c b/drivers/gpu/drm/nouveau/nvc0_fbcon.c index 61246677e8dc..fcd2e5f27bb9 100644 --- a/drivers/gpu/drm/nouveau/nvc0_fbcon.c +++ b/drivers/gpu/drm/nouveau/nvc0_fbcon.c | |||
@@ -188,7 +188,7 @@ nvc0_fbcon_accel_init(struct fb_info *info) | |||
188 | return -EINVAL; | 188 | return -EINVAL; |
189 | } | 189 | } |
190 | 190 | ||
191 | ret = RING_SPACE(chan, 60); | 191 | ret = RING_SPACE(chan, 58); |
192 | if (ret) { | 192 | if (ret) { |
193 | WARN_ON(1); | 193 | WARN_ON(1); |
194 | nouveau_fbcon_gpu_lockup(info); | 194 | nouveau_fbcon_gpu_lockup(info); |