Merge branch 'fbdev-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6

* 'fbdev-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6:
OMAP: OMAPFB: disable old omapfb for OMAP4 builds
OMAP: DSS: VRAM: Align start & size of vram to 2M

+4 -4
+2 -2
drivers/video/omap/Kconfig
··· 1 config FB_OMAP 2 tristate "OMAP frame buffer support (EXPERIMENTAL)" 3 - depends on FB && ARCH_OMAP && (OMAP2_DSS = "n") 4 - 5 select FB_CFB_FILLRECT 6 select FB_CFB_COPYAREA 7 select FB_CFB_IMAGEBLIT
··· 1 config FB_OMAP 2 tristate "OMAP frame buffer support (EXPERIMENTAL)" 3 + depends on FB && (OMAP2_DSS = "n") 4 + depends on ARCH_OMAP1 || ARCH_OMAP2 || ARCH_OMAP3 5 select FB_CFB_FILLRECT 6 select FB_CFB_COPYAREA 7 select FB_CFB_IMAGEBLIT
+2 -2
drivers/video/omap2/vram.c
··· 551 if (!size) 552 return; 553 554 - size = PAGE_ALIGN(size); 555 556 if (paddr) { 557 if (paddr & ~PAGE_MASK) { ··· 576 return; 577 } 578 } else { 579 - paddr = memblock_alloc(size, PAGE_SIZE); 580 } 581 582 memblock_free(paddr, size);
··· 551 if (!size) 552 return; 553 554 + size = ALIGN(size, SZ_2M); 555 556 if (paddr) { 557 if (paddr & ~PAGE_MASK) { ··· 576 return; 577 } 578 } else { 579 + paddr = memblock_alloc(size, SZ_2M); 580 } 581 582 memblock_free(paddr, size);