diff options
author | Jens Axboe <axboe@kernel.dk> | 2021-10-01 19:23:26 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-10-18 14:42:44 -0600 |
commit | 1f0a258f114b5b152855d31179f902cb10bdfb59 (patch) | |
tree | bcecf116f773a5d6a0c32ce8b5690d6779984b63 | |
parent | 5deae20c552aec0750cc7b95e84ca94121aac3b3 (diff) | |
download | linux-1f0a258f114b5b152855d31179f902cb10bdfb59.tar.gz linux-1f0a258f114b5b152855d31179f902cb10bdfb59.tar.bz2 linux-1f0a258f114b5b152855d31179f902cb10bdfb59.zip |
swim3: add missing major.h include
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>
-rw-r--r-- | drivers/block/swim3.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/swim3.c b/drivers/block/swim3.c index f7e3482e846b..4b91c9aa5892 100644 --- a/drivers/block/swim3.c +++ b/drivers/block/swim3.c @@ -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> |