projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24fc722
)
offb: the pseudo_palette is only 16 elements long
author
Antonino A. Daplas
<adaplas@gmail.com>
Tue, 17 Jul 2007 11:05:38 +0000
(
04:05
-0700)
committer
Linus Torvalds
<torvalds@woody.linux-foundation.org>
Tue, 17 Jul 2007 17:23:12 +0000
(10:23 -0700)
The pseudo_palette is only 16 elements long.
Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/offb.c
patch
|
blob
|
history
diff --git
a/drivers/video/offb.c
b/drivers/video/offb.c
index 885b42836cbb31f81b142154305fc90b335c5d18..452433d469738cd203115d7fa3779a239f476120 100644
(file)
--- a/
drivers/video/offb.c
+++ b/
drivers/video/offb.c
@@
-271,7
+271,7
@@
static void __init offb_init_fb(const char *name, const char *full_name,
return;
}
- size = sizeof(struct fb_info) + sizeof(u32) * 1
7
;
+ size = sizeof(struct fb_info) + sizeof(u32) * 1
6
;
info = kmalloc(size, GFP_ATOMIC);