From 742f302cdc9198dc27deeea8c1c35482cf616ec2 Mon Sep 17 00:00:00 2001 From: Dhruva Gole Date: Tue, 20 Sep 2022 10:56:02 +0530 Subject: [PATCH] =?utf8?q?dma:=20ti:=20k3-udma:=20Fix=20'SZ=5F64K=E2=80=99?= =?utf8?q?=20undeclared=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Include linux/sizes.h because it defines SZ_64K which is used in many places inside k3-udma.c This fixes the error: ‘SZ_64K’ undeclared which appears during build time Signed-off-by: Dhruva Gole Reviewed-by: Tom Rini --- drivers/dma/ti/k3-udma.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dma/ti/k3-udma.c b/drivers/dma/ti/k3-udma.c index 86603d4..1a9197b 100644 --- a/drivers/dma/ti/k3-udma.c +++ b/drivers/dma/ti/k3-udma.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include -- 2.7.4