The patch titled sh7760fb: write colormap value to hardware has been removed from the -mm tree. Its filename was sh7760fb-write-colormap-value-to-hardware.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: sh7760fb: write colormap value to hardware From: Manuel Lauss <mano@xxxxxxxxxxxxxxxxxxxxxxx> The computed color value is never actually written to hardware colormap register. Signed-off-by: Manuel Lauss <mano@xxxxxxxxxxxxxxxxxxxxxxx> Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@xxxxxxxxxxx> Cc: Munakata Hisao <munakata.hisao@xxxxxxxxxxx> Cc: Paul Mundt <lethal@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/sh7760fb.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/video/sh7760fb.c~sh7760fb-write-colormap-value-to-hardware drivers/video/sh7760fb.c --- a/drivers/video/sh7760fb.c~sh7760fb-write-colormap-value-to-hardware +++ a/drivers/video/sh7760fb.c @@ -152,6 +152,7 @@ static int sh7760fb_setcmap(struct fb_cm 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; _ Patches currently in -mm which might be from mano@xxxxxxxxxxxxxxxxxxxxxxx are git-alsa-tiwai.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html