projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d108142
)
drm/nouveau/fbcon/gf100-: reduce RING_SPACE allocation
author
Ilia Mirkin
<imirkin@alum.mit.edu>
Tue, 30 Jun 2015 00:43:46 +0000
(20:43 -0400)
committer
Ben Skeggs
<bskeggs@redhat.com>
Mon, 27 Jul 2015 08:56:10 +0000
(18:56 +1000)
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>
drivers/gpu/drm/nouveau/nvc0_fbcon.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/nouveau/nvc0_fbcon.c
b/drivers/gpu/drm/nouveau/nvc0_fbcon.c
index
6124667
..
fcd2e5f
100644
(file)
--- 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);