Commit 9b9b86eb authored by Ian Campbell's avatar Ian Campbell Committed by Russell King

[ARM PATCH] 1930/1: Allocate correct number of pseudo palette entries in pxafb

Patch from Ian Campbell

The pxafb driver incorrectly allocates 17 u32's for a 16 entry 
pseudo palette.
parent 451436b7
......@@ -1016,7 +1016,7 @@ static struct pxafb_info * __init pxafb_init_fbinfo(struct device *dev)
struct pxafb_mach_info *inf = dev->platform_data;
/* Alloc the pxafb_info and pseudo_palette in one step */
fbi = kmalloc(sizeof(struct pxafb_info) + sizeof(u32) * 17, GFP_KERNEL);
fbi = kmalloc(sizeof(struct pxafb_info) + sizeof(u32) * 16, GFP_KERNEL);
if (!fbi)
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment