The patch titled atyfb: Fix blanking level transitions has been removed from the -mm tree. Its filename was atyfb-fix-blanking-level.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: atyfb: Fix blanking level transitions From: Ville Syrjala <syrjala@xxxxxx> Fix a minor problem in blanking level transitions. Reducing the blanking level gradually was impossible. Signed-off-by: Ville Syrjala <syrjala@xxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/aty/atyfb_base.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/aty/atyfb_base.c~atyfb-fix-blanking-level drivers/video/aty/atyfb_base.c --- a/drivers/video/aty/atyfb_base.c~atyfb-fix-blanking-level +++ a/drivers/video/aty/atyfb_base.c @@ -2825,9 +2825,9 @@ static int atyfb_blank(int blank, struct #endif gen_cntl = aty_ld_le32(CRTC_GEN_CNTL, par); + gen_cntl &= ~0x400004c; switch (blank) { - case FB_BLANK_UNBLANK: - gen_cntl &= ~0x400004c; + case FB_BLANK_UNBLANK: break; case FB_BLANK_NORMAL: gen_cntl |= 0x4000040; _ Patches currently in -mm which might be from syrjala@xxxxxx are atyfb-fix-blanking-level.patch atyfb-remove-pointless-aty_init.patch atyfb-fix-__init-and-__devinit.patch atyfb-remove-aty_cmap_regs.patch atyfb-improve-atyfb_atari_probe.patch atyfb-improve-power-management.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