mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
260cbc9af2
Add drivers/video/ti/ folder and move all TI's code in this folder for better maintenance. Signed-off-by: Dario Binacchi <dariobin@libero.it>
10 lines
223 B
Makefile
10 lines
223 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2020 Dario Binacchi <dariobin@libero.it>
|
|
#
|
|
|
|
ifdef CONFIG_DM_VIDEO
|
|
obj-$(CONFIG_AM335X_LCD) += tilcdc.o tilcdc-panel.o
|
|
else
|
|
obj-$(CONFIG_AM335X_LCD) += am335x-fb.o
|
|
endif
|