mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
e140980ef2
Commit 21a3e6eed423 ("ARM: omap1: remove osk-mistral add-on board support") removed the platform_device definition for the "lcd_osk" device, so this driver is now unused and can be removed as well. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Helge Deller <deller@gmx.de>
27 lines
537 B
Makefile
27 lines
537 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the OMAP1 framebuffer device driver
|
|
#
|
|
|
|
obj-$(CONFIG_FB_OMAP) += omapfb.o
|
|
|
|
ifdef CONFIG_FB_OMAP
|
|
# must be built-in
|
|
obj-y += lcd_dma.o
|
|
endif
|
|
|
|
objs-yy := omapfb_main.o lcdc.o
|
|
|
|
objs-y$(CONFIG_FB_OMAP_LCDC_EXTERNAL) += sossi.o
|
|
|
|
objs-y$(CONFIG_FB_OMAP_LCDC_HWA742) += hwa742.o
|
|
|
|
lcds-y$(CONFIG_MACH_AMS_DELTA) += lcd_ams_delta.o
|
|
lcds-y$(CONFIG_MACH_OMAP_PALMTE) += lcd_palmte.o
|
|
|
|
lcds-y$(CONFIG_FB_OMAP_LCD_MIPID) += lcd_mipid.o
|
|
|
|
omapfb-objs := $(objs-yy)
|
|
|
|
obj-$(CONFIG_FB_OMAP) += $(lcds-yy)
|