Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c27ef92d authored by Manuel Lauss's avatar Manuel Lauss Committed by Linus Torvalds
Browse files

sh7760fb: write colormap value to hardware



The computed color value is never actually written to hardware
colormap register.

Signed-off-by: default avatarManuel Lauss <mano@roarinelk.homelinux.net>
Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
Cc: Munakata Hisao <munakata.hisao@renesas.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7fcba054
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -152,6 +152,7 @@ static int sh7760fb_setcmap(struct fb_cmap *cmap, struct fb_info *info)
		col |= ((*g) & 0xff) << 8;
		col |= ((*b) & 0xff);
		col &= SH7760FB_PALETTE_MASK;
		iowrite32(col, par->base + LDPR(s));

		if (s < 16)
			((u32 *) (info->pseudo_palette))[s] = s;