Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8dc50ec7 authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

OMAPFB: Remove OMAP2/3 support from old omapfb driver



Old omapfb driver (drivers/video/omap/) is no longer used for OMAP2+
devices, and thus we can remove OMAP2+ support from it and make it an
OMAP1 omapfb driver.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent fdcb6888
Loading
Loading
Loading
Loading
+4 −5
Original line number Original line Diff line number Diff line
config FB_OMAP
config FB_OMAP
	tristate "OMAP frame buffer support (EXPERIMENTAL)"
	tristate "OMAP frame buffer support (EXPERIMENTAL)"
	depends on FB && (OMAP2_DSS = "n")
	depends on FB
	depends on ARCH_OMAP1 || ARCH_OMAP2 || ARCH_OMAP3
	depends on ARCH_OMAP1
	select FB_CFB_FILLRECT
	select FB_CFB_FILLRECT
	select FB_CFB_COPYAREA
	select FB_CFB_COPYAREA
	select FB_CFB_IMAGEBLIT
	select FB_CFB_IMAGEBLIT
	select TWL4030_CORE if MACH_OMAP_2430SDP
	help
	help
          Frame buffer driver for OMAP based boards.
          Frame buffer driver for OMAP based boards.


@@ -42,7 +41,7 @@ config FB_OMAP_LCD_MIPID


config FB_OMAP_BOOTLOADER_INIT
config FB_OMAP_BOOTLOADER_INIT
	bool "Check bootloader initialization"
	bool "Check bootloader initialization"
	depends on FB_OMAP || FB_OMAP2
	depends on FB_OMAP
	help
	help
	  Say Y here if you want to enable checking if the bootloader has
	  Say Y here if you want to enable checking if the bootloader has
	  already initialized the display controller. In this case the
	  already initialized the display controller. In this case the
@@ -61,7 +60,7 @@ config FB_OMAP_CONSISTENT_DMA_SIZE


config FB_OMAP_DMA_TUNE
config FB_OMAP_DMA_TUNE
        bool "Set DMA SDRAM access priority high"
        bool "Set DMA SDRAM access priority high"
        depends on FB_OMAP && ARCH_OMAP1
        depends on FB_OMAP
        help
        help
          On systems in which video memory is in system memory
          On systems in which video memory is in system memory
          (SDRAM) this will speed up graphics DMA operations.
          (SDRAM) this will speed up graphics DMA operations.
+1 −4
Original line number Original line Diff line number Diff line
#
#
# Makefile for the new OMAP framebuffer device driver
# Makefile for the OMAP1 framebuffer device driver
#
#


obj-$(CONFIG_FB_OMAP) += omapfb.o
obj-$(CONFIG_FB_OMAP) += omapfb.o
@@ -7,11 +7,8 @@ obj-$(CONFIG_FB_OMAP) += omapfb.o
objs-yy := omapfb_main.o
objs-yy := omapfb_main.o


objs-y$(CONFIG_ARCH_OMAP1) += lcdc.o
objs-y$(CONFIG_ARCH_OMAP1) += lcdc.o
objs-y$(CONFIG_ARCH_OMAP2) += dispc.o
objs-y$(CONFIG_ARCH_OMAP3) += dispc.o


objs-$(CONFIG_ARCH_OMAP1)$(CONFIG_FB_OMAP_LCDC_EXTERNAL) += sossi.o
objs-$(CONFIG_ARCH_OMAP1)$(CONFIG_FB_OMAP_LCDC_EXTERNAL) += sossi.o
objs-$(CONFIG_ARCH_OMAP2)$(CONFIG_FB_OMAP_LCDC_EXTERNAL) += rfbi.o


objs-y$(CONFIG_FB_OMAP_LCDC_HWA742) += hwa742.o
objs-y$(CONFIG_FB_OMAP_LCDC_HWA742) += hwa742.o


Loading