The patch titled atyfb: Set correct acceleration flags has been removed from the -mm tree. Its filename is atyfb-set-correct-acceleration-flags.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: atyfb: Set correct acceleration flags From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> Set the appropriate acceleration flags so fbcon can choose the optimal scrolling mode. Signed-off-by: Antonino Daplas <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/aty/atyfb_base.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff -puN drivers/video/aty/atyfb_base.c~atyfb-set-correct-acceleration-flags drivers/video/aty/atyfb_base.c --- a/drivers/video/aty/atyfb_base.c~atyfb-set-correct-acceleration-flags +++ a/drivers/video/aty/atyfb_base.c @@ -1281,6 +1281,14 @@ static int atyfb_set_par(struct fb_info par->accel_flags = var->accel_flags; /* hack */ + if (var->accel_flags) { + info->fbops->fb_sync = atyfb_sync; + info->flags &= ~FBINFO_HWACCEL_DISABLED; + } else { + info->fbops->fb_sync = NULL; + info->flags |= FBINFO_HWACCEL_DISABLED; + } + if (par->blitter_may_be_busy) wait_for_idle(par); @@ -2604,7 +2612,11 @@ static int __init aty_init(struct fb_inf info->fbops = &atyfb_ops; info->pseudo_palette = pseudo_palette; - info->flags = FBINFO_FLAG_DEFAULT; + info->flags = FBINFO_DEFAULT | + FBINFO_HWACCEL_IMAGEBLIT | + FBINFO_HWACCEL_FILLRECT | + FBINFO_HWACCEL_COPYAREA | + FBINFO_HWACCEL_YPAN; #ifdef CONFIG_PMAC_BACKLIGHT if (M64_HAS(G3_PB_1_1) && machine_is_compatible("PowerBook1,1")) { _ Patches currently in -mm which might be from adaplas@xxxxxxxxx are origin.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