aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/ffb.c
diff options
context:
space:
mode:
authorAntonino Daplas <adaplas@gmail.com>2007-06-05 13:14:33 -0700
committerDavid S. Miller <davem@davemloft.net>2007-06-05 13:14:33 -0700
commitd2fa9e05e3876198d8ab31624fe84512a0a44b45 (patch)
treeca80f3acd3a90f7dcd622d3721166b48591fdf83 /drivers/video/ffb.c
parent353076fee81318d056c7a853b1bf6ad1f81d050d (diff)
[VIDEO] ffb: The pseudo_palette is only 16 elements long
The pseudo_palette is only 16 elements long. Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/video/ffb.c')
-rw-r--r--drivers/video/ffb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/ffb.c b/drivers/video/ffb.c
index 1d4e8354b56..3f6c98fad43 100644
--- a/drivers/video/ffb.c
+++ b/drivers/video/ffb.c
@@ -656,7 +656,7 @@ static int ffb_setcolreg(unsigned regno,
{
u32 value;
- if (regno >= 256)
+ if (regno >= 16)
return 1;
red >>= 8;
@@ -903,7 +903,7 @@ ffb_init_fix(struct fb_info *info)
struct all_info {
struct fb_info info;
struct ffb_par par;
- u32 pseudo_palette[256];
+ u32 pseudo_palette[16];
};
static int ffb_init_one(struct of_device *op)