diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2025-04-07 22:01:53 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-16 16:51:45 -0600 |
commit | 225d1ec702b5092cc514932378e810e5e9e92bf7 (patch) | |
tree | af9476c92d584f5e4f13f89d597624fc33ac0833 | |
parent | 53e83caa870f45a8470dba85e9bd627f6b3d010d (diff) |
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 <ansuelsmth@gmail.com>
-rw-r--r-- | include/linux/mtd/spinand.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <linux/spi/spi.h> #include <linux/spi/spi-mem.h> #else -#include <spi.h> +#include <linux/bitops.h> #include <spi-mem.h> #include <linux/mtd/nand.h> #endif |