The patch titled sstfb: fix pixclock setting on Voodoo 1/2 cards has been added to the -mm tree. Its filename is sstfb-fix-pixclock-setting-on-voodoo-1-2-cards.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sstfb: fix pixclock setting on Voodoo 1/2 cards From: Ondrej Zajicek <santiago@xxxxxxxxxxxxx> Pixclock setting in sstfb didn't work with my Voodoo 2 card with ICS 5342 DAC (this DAC requires two consecutive writes to one of its registers to program pixclock - maybe first write merged with second). Signed-off-by: Ondrej Zajicek <santiago@xxxxxxxxxxxxx> Signed-off-by: Antonino Daplas <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/sstfb.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/video/sstfb.c~sstfb-fix-pixclock-setting-on-voodoo-1-2-cards drivers/video/sstfb.c --- a/drivers/video/sstfb.c~sstfb-fix-pixclock-setting-on-voodoo-1-2-cards +++ a/drivers/video/sstfb.c @@ -257,6 +257,7 @@ static void __sst_dac_write(u8 __iomem * r_dprintk("sst_dac_write(%#x, %#x)\n", reg, val); reg &= 0x07; __sst_write(vbase, DAC_DATA,(((u32)reg << 8)) | (u32)val); + __sst_wait_idle(vbase); } /* indexed access to ti/att dacs */ _ Patches currently in -mm which might be from santiago@xxxxxxxxxxxxx are sstfb-fix-pixclock-setting-on-voodoo-1-2-cards.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