[MTD] [MAPS] don't force uclinux mtd map to be root dev

The cheesy uclinux mtd maps can be used for more than just the root device, so
I think we should drop the forcing.

Also, I feel like this is a policy decision that shouldnt be in the kernel in
the first place. People who have been lazy and boot with uclinux mtd maps and
dont put root= into their commandline can simply add the appropriate root=
line either into their bootloader or into the compiled in bootargs.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>

authored by Mike Frysinger and committed by David Woodhouse 33672f72 b7aa48be

-5
-5
drivers/mtd/maps/uclinux.c
··· 16 16 #include <linux/kernel.h> 17 17 #include <linux/fs.h> 18 18 #include <linux/major.h> 19 - #include <linux/root_dev.h> 20 19 #include <linux/mtd/mtd.h> 21 20 #include <linux/mtd/map.h> 22 21 #include <linux/mtd/partitions.h> ··· 87 88 88 89 uclinux_ram_mtdinfo = mtd; 89 90 add_mtd_partitions(mtd, uclinux_romfs, NUM_PARTITIONS); 90 - 91 - printk("uclinux[mtd]: set %s to be root filesystem\n", 92 - uclinux_romfs[0].name); 93 - ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, 0); 94 91 95 92 return(0); 96 93 }