From a96ef8a63128fa66a4eec82634c26f19924984cc Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Thu, 11 Aug 2022 23:25:29 -0500 Subject: [PATCH] drivers: misc: ft8xx: Update Kconfig * Utilize DT_HAS__ENABLED for devicetree based drivers * Move to using 'select SPI' instead of 'depends on' (see commit df81fef94483da9f2811d48088affbcfd61ab18c for more details) Signed-off-by: Kumar Gala --- drivers/misc/ft8xx/Kconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/misc/ft8xx/Kconfig b/drivers/misc/ft8xx/Kconfig index fb67efafb4..6cc3773e66 100644 --- a/drivers/misc/ft8xx/Kconfig +++ b/drivers/misc/ft8xx/Kconfig @@ -5,6 +5,8 @@ config FT800 bool "FT800 Embedded Video Engine driver" - depends on SPI + default y + depends on DT_HAS_FTDI_FT800_ENABLED + select SPI help Enable driver for FT800 controller.