From f0d49d4f0dba4bd3dc4810dbfc48e315afe023fc Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Fri, 25 Mar 2022 10:40:35 -0500 Subject: [PATCH] spi: rockchip_sfc: Add missing include for dm/device_compat.h Add missing include for dm/device_compat.h. Without this include the SFC driver fails to compile because dev_err and dev_dbg are not defined. Signed-off-by: Chris Morgan Reviewed-by: Kever Yang --- drivers/spi/rockchip_sfc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/rockchip_sfc.c b/drivers/spi/rockchip_sfc.c index e098addddc..851a648298 100644 --- a/drivers/spi/rockchip_sfc.c +++ b/drivers/spi/rockchip_sfc.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include -- 2.39.5