summaryrefslogtreecommitdiffstats
path: root/include/video/tgafb.h
diff options
context:
space:
mode:
authorAntonino A. Daplas2007-07-17 13:05:41 +0200
committerLinus Torvalds2007-07-17 19:23:12 +0200
commiteb3daa83c2f63743fb7597f620beac75e1ba5633 (patch)
treebe59200d2ed567f6ac0a0e7dc1369b0ee67c8db6 /include/video/tgafb.h
parentsgivwfb: the pseudo_palette is only 16 elements long (diff)
downloadkernel-qcow2-linux-eb3daa83c2f63743fb7597f620beac75e1ba5633.tar.gz
kernel-qcow2-linux-eb3daa83c2f63743fb7597f620beac75e1ba5633.tar.xz
kernel-qcow2-linux-eb3daa83c2f63743fb7597f620beac75e1ba5633.zip
tgafb: actually allocate memory for the pseudo_palette
No memory allocation was done for the pseudo_palette. Allocate one for it. Signed-off-by: Antonino Daplas <adaplas@gmail.com> Acked-by: "Maciej W. Rozycki" <macro@linux-mips.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/video/tgafb.h')
-rw-r--r--include/video/tgafb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/video/tgafb.h b/include/video/tgafb.h
index 03d0dbe293a8..7bc5e2c14826 100644
--- a/include/video/tgafb.h
+++ b/include/video/tgafb.h
@@ -216,6 +216,7 @@ struct tga_par {
u32 pll_freq; /* pixclock in mhz */
u32 bits_per_pixel; /* bits per pixel */
u32 sync_on_green; /* set if sync is on green */
+ u32 palette[16];
};