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 18:56:10 +1000 |
commit | 4fd26cb1e4049c7a630d86d52864a5722c7453ac (patch) | |
tree | b4e8f7a7d51d4efecf9a55a78b77a35940be8508 /drivers/gpu | |
parent | d108142c0840ce389cd9898aa76943b3fb430b83 (diff) | |
download | talos-obmc-linux-4fd26cb1e4049c7a630d86d52864a5722c7453ac.tar.gz talos-obmc-linux-4fd26cb1e4049c7a630d86d52864a5722c7453ac.zip |
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>
Diffstat (limited to 'drivers/gpu')
-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) return -EINVAL; } - ret = RING_SPACE(chan, 60); + ret = RING_SPACE(chan, 58); if (ret) { WARN_ON(1); nouveau_fbcon_gpu_lockup(info); |