diff options
author | Christoph Hellwig <hch@lst.de> | 2020-06-04 10:23:14 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2020-07-30 08:22:33 +0200 |
commit | c8376994c86c4eb02b9a1032cd3a8d44c911d671 (patch) | |
tree | 29415bbfe069f70c1212eaeb9d8250873559e9e3 /arch/arm | |
parent | md: rewrite md_setup_drive to avoid ioctls (diff) | |
download | linux-c8376994c86c4eb02b9a1032cd3a8d44c911d671.tar.xz linux-c8376994c86c4eb02b9a1032cd3a8d44c911d671.zip |
initrd: remove support for multiple floppies
Remove the special handling for multiple floppies in the initrd code.
No one should be using floppies for booting these days. (famous last
words..)
Includes a spelling fix from Colin Ian King <colin.king@canonical.com>.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/kernel/atags_parse.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/kernel/atags_parse.c b/arch/arm/kernel/atags_parse.c index ce02f92f4ab2..6c12d9fe694e 100644 --- a/arch/arm/kernel/atags_parse.c +++ b/arch/arm/kernel/atags_parse.c @@ -91,8 +91,6 @@ __tagtable(ATAG_VIDEOTEXT, parse_tag_videotext); static int __init parse_tag_ramdisk(const struct tag *tag) { rd_image_start = tag->u.ramdisk.start; - rd_doload = (tag->u.ramdisk.flags & 1) == 0; - rd_prompt = (tag->u.ramdisk.flags & 2) == 0; if (tag->u.ramdisk.size) rd_size = tag->u.ramdisk.size; |