From 225d1ec702b5092cc514932378e810e5e9e92bf7 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Mon, 7 Apr 2025 22:01:53 +0200 Subject: [PATCH] spi: drop unneeded spi.h header include from spinand.h Drop unneeded spi.h header include from spinand.h, nothing included by spi.h is actually used in this header and .c should correctly included spi.h if actually needed. Replace spi.h with linux/bitops.h as this is what is actually required for spinand.h Signed-off-by: Christian Marangi --- include/linux/mtd/spinand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/mtd/spinand.h b/include/linux/mtd/spinand.h index 13b5a52f8b9..6fe6fd520a4 100644 --- a/include/linux/mtd/spinand.h +++ b/include/linux/mtd/spinand.h @@ -17,7 +17,7 @@ #include #include #else -#include +#include #include #include #endif -- 2.39.5