The patch titled pm2fb: accelerated 24-bit fillrect has been removed from the -mm tree. Its filename was pm2fb-accelerated-24-bit-fillrect.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pm2fb: accelerated 24-bit fillrect From: Krzysztof Helt <krzysztof.h1@xxxxx> This patch adds accelerated fillrect for 24-bit depth. Signed-off-by: Krzysztof Helt <krzysztof.h1@xxxxx> Signed-off-by: Antonino Daplas <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/pm2fb.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff -puN drivers/video/pm2fb.c~pm2fb-accelerated-24-bit-fillrect drivers/video/pm2fb.c --- a/drivers/video/pm2fb.c~pm2fb-accelerated-24-bit-fillrect +++ a/drivers/video/pm2fb.c @@ -1077,7 +1077,13 @@ static void pm2fb_fillrect (struct fb_in pm2_WR(par, PM2R_RENDER, PM2F_RENDER_RECTANGLE | PM2F_RENDER_FASTFILL); } else { - cfb_fillrect(info, region); + WAIT_FIFO(par, 4); + pm2_WR(par, PM2R_COLOR_DDA_MODE, 1); + pm2_WR(par, PM2R_CONSTANT_COLOR, color); + wmb(); + pm2_WR(par, PM2R_RENDER, + PM2F_RENDER_RECTANGLE | PM2F_INCREASE_X | PM2F_INCREASE_Y ); + pm2_WR(par, PM2R_COLOR_DDA_MODE, 0); } } _ Patches currently in -mm which might be from krzysztof.h1@xxxxx are origin.patch git-alsa.patch cyber2000fb-checkpatch-fixes.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