swim3: add missing major.h include
authorJens Axboe <axboe@kernel.dk>
Sat, 2 Oct 2021 01:23:26 +0000 (19:23 -0600)
committerJens Axboe <axboe@kernel.dk>
Mon, 18 Oct 2021 20:42:44 +0000 (14:42 -0600)
swim3 got this through blkdev.h previously, but blkdev.h is not including
it anymore. Include it specifically for the driver, otherwise FLOPPY_MAJOR
is undefined and breaks the compile on PPC if swim3 is configured.

Fixes: b81e0c2372e6 ("block: drop unused includes in <linux/genhd.h>")
Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/swim3.c

index f7e3482..4b91c9a 100644 (file)
@@ -27,6 +27,7 @@
 #include <linux/module.h>
 #include <linux/spinlock.h>
 #include <linux/wait.h>
+#include <linux/major.h>
 #include <asm/io.h>
 #include <asm/dbdma.h>
 #include <asm/prom.h>