diff options
author | Sumit Semwal <sumit.semwal@ti.com> | 2011-01-24 01:21:54 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-02-23 02:33:27 -0500 |
commit | b7ee79abcc1bd549eadf5a9852657058e6ecca47 (patch) | |
tree | cf1a036586acd6b78cafb2d367b5a2992b27bfea /arch/arm/mach-omap2/Makefile | |
parent | 1dde9732d543f30d4297e8b74329c5ce797b5d16 (diff) |
OMAP2, 3: DSS2: Create new file display.c for central dss driver registration.
A new file display.c is introduced for display driver init, which adds a function
omap_display_init to do the DSS driver registration. This is the first step in moving
away registration of DSS from board files into a common place.
Reviewed-by: Kevin Hilman <khilman@ti.com>
Tested-by: Kevin Hilman <khilman@ti.com>
Signed-off-by: Senthilvadivu Guruswamy <svadivu@ti.com>
Signed-off-by: Sumit Semwal <sumit.semwal@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/Makefile')
-rw-r--r-- | arch/arm/mach-omap2/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index ee72a9787bf1..1c3635d7f4cf 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile | |||
@@ -245,3 +245,6 @@ obj-y += $(smc91x-m) $(smc91x-y) | |||
245 | smsc911x-$(CONFIG_SMSC911X) := gpmc-smsc911x.o | 245 | smsc911x-$(CONFIG_SMSC911X) := gpmc-smsc911x.o |
246 | obj-y += $(smsc911x-m) $(smsc911x-y) | 246 | obj-y += $(smsc911x-m) $(smsc911x-y) |
247 | obj-$(CONFIG_ARCH_OMAP4) += hwspinlock.o | 247 | obj-$(CONFIG_ARCH_OMAP4) += hwspinlock.o |
248 | |||
249 | disp-$(CONFIG_OMAP2_DSS) := display.o | ||
250 | obj-y += $(disp-m) $(disp-y) | ||