aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFinn Thain <[email protected]>2019-04-01 17:46:55 +0200
committerBartlomiej Zolnierkiewicz <[email protected]>2019-04-01 17:46:55 +0200
commit36884ceb76661b09af62005c3b60b41670ae71aa (patch)
tree5427f43e7941db8e5e14b362d0e07477792c67e2
parentf82301661c6ca3414fb0f6c223f206be938b9495 (diff)
video/macfb: Always initialize DAFB colour table pointer register
Don't skip the framebuffer CLUT pointer register initialization when the first dafb_setpalette() invocation has regno equal to zero. Suggested-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Finn Thain <[email protected]> Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]>
-rw-r--r--drivers/video/fbdev/macfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/macfb.c b/drivers/video/fbdev/macfb.c
index 37c56c45ee39..8820a556014c 100644
--- a/drivers/video/fbdev/macfb.c
+++ b/drivers/video/fbdev/macfb.c
@@ -148,7 +148,7 @@ static int dafb_setpalette(unsigned int regno, unsigned int red,
unsigned int green, unsigned int blue,
struct fb_info *info)
{
- static int lastreg = -1;
+ static int lastreg = -2;
unsigned long flags;
local_irq_save(flags);