Now that all omap2+ boards have been changed to use the newer omapdss driver, this patch series removes omap2+ support from the old omapfb driver (drivers/video/omap), and thus makes it an omap1 dss/fb driver. The use of SRAM for video ram had earlier been disabled by removing the SRAM allocation (fee926bb0d399b1eaaf38f9f694bbf2747c4b8a2), and now this series also removes the support from the omap fb drivers. Also various cleanup patches allow us to remove remove OMAP_TAG_LCD and OMAP_TAG_FBMEM. All in all, the series removes quite a bit of unneeded code and cleans up the links between the board files and the display drivers, and this should help with device tree adaptation. Some of the patches affect the newer omapdss and omapfb drivers, but mostly the patches deal with omap1. I have compile tested the series for both omap1 and omap2, but I have only tested this on OMAP3 and OMAP4 boards, as I don't have OMAP1/2 boards. I think N770's display won't work after these patches, but other OMAP1 boards should be ok. To fix N770's display requires knowledge of the hardware setup, which is currently passed from the bootloader. Tomi Tomi Valkeinen (16): OMAPFB: remove old blizzard driver OMAPFB: Remove OMAP2/3 support from old omapfb driver OMAPDSS: Remove video SRAM support OMAPFB: Remove video SRAM support (old omapfb) OMAP2+: remove unneeded #include omapfb.h OMAP: N770: remove HWA742 platform data OAMPFB: remove unused omapfb_set_ctrl_platform_data() OMAPFB: remove early mem alloc from old omapfb OMAPFB: remove mem info from platform_data OMAPFB: remove unused fb_format_to_dss_mode() OMAPFB: Move old omapfb private structs to a private include file OMAPFB: remove omapfb_set_platform_data() OMAP1: pass LCD config with omapfb_set_lcd_config() OMAP: Remove OMAP_TAG_LCD and OMAP_TAG_FBMEM OMAP1: Remove unused LCD devices from board files OMAPFB: remove remaining OMAP arch checks arch/arm/mach-omap1/board-ams-delta.c | 9 +- arch/arm/mach-omap1/board-fsample.c | 15 +- arch/arm/mach-omap1/board-h2.c | 15 +- arch/arm/mach-omap1/board-h3.c | 9 +- arch/arm/mach-omap1/board-htcherald.c | 9 +- arch/arm/mach-omap1/board-innovator.c | 11 +- arch/arm/mach-omap1/board-nokia770.c | 19 +- arch/arm/mach-omap1/board-osk.c | 14 +- arch/arm/mach-omap1/board-palmte.c | 10 +- arch/arm/mach-omap1/board-palmtt.c | 10 +- arch/arm/mach-omap1/board-palmz71.c | 10 +- arch/arm/mach-omap1/board-perseus2.c | 15 +- arch/arm/mach-omap1/board-sx1.c | 16 +- arch/arm/mach-omap2/io.c | 1 - arch/arm/plat-omap/common.c | 2 - arch/arm/plat-omap/fb.c | 336 +------ arch/arm/plat-omap/fb.h | 10 - arch/arm/plat-omap/include/plat/blizzard.h | 12 - arch/arm/plat-omap/include/plat/board.h | 2 - arch/arm/plat-omap/include/plat/hwa742.h | 8 - arch/arm/plat-omap/include/plat/vram.h | 21 +- drivers/video/omap/Kconfig | 16 +- drivers/video/omap/Makefile | 12 +- drivers/video/omap/blizzard.c | 1648 ---------------------------- drivers/video/omap/dispc.c | 1547 -------------------------- drivers/video/omap/dispc.h | 46 - drivers/video/omap/hwa742.c | 21 +- drivers/video/omap/omapfb.h | 25 +- drivers/video/omap/omapfb_main.c | 30 +- drivers/video/omap/rfbi.c | 598 ---------- drivers/video/omap2/dss/dispc.c | 1 - drivers/video/omap2/omapfb/omapfb-ioctl.c | 2 +- drivers/video/omap2/omapfb/omapfb-main.c | 101 +-- drivers/video/omap2/vram.c | 99 +-- include/linux/omapfb.h | 32 +- 35 files changed, 100 insertions(+), 4632 deletions(-) delete mode 100644 arch/arm/plat-omap/fb.h delete mode 100644 arch/arm/plat-omap/include/plat/blizzard.h delete mode 100644 arch/arm/plat-omap/include/plat/hwa742.h delete mode 100644 drivers/video/omap/blizzard.c delete mode 100644 drivers/video/omap/dispc.c delete mode 100644 drivers/video/omap/dispc.h delete mode 100644 drivers/video/omap/rfbi.c -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html