diff options
author | Scott James Remnant <scott@canonical.com> | 2009-03-02 20:43:04 +0300 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-03-20 21:34:00 +0300 |
commit | e7f521636a2d6b1a012f98f6ec16898c5d6f1543 (patch) | |
tree | 0498454b075be4d764a2a59c87e693bc82f613d0 /drivers/mtd/nftlcore.c | |
parent | 90160e13b0bfe82d8bfe83541e3aa3961fdeed25 (diff) | |
download | linux-e7f521636a2d6b1a012f98f6ec16898c5d6f1543.tar.xz |
[MTD] Auto-load nftl module when device opened.
The nftl module is missing the block-major-93-* alias that would cause
it to be auto-loaded when a nftl of that type is opened. This patch
adds the alias.
Signed-off-by: Scott James Remnant <scott@canonical.com>
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nftlcore.c')
-rw-r--r-- | drivers/mtd/nftlcore.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/nftlcore.c b/drivers/mtd/nftlcore.c index f5bcd4969462..e3f8495a94c2 100644 --- a/drivers/mtd/nftlcore.c +++ b/drivers/mtd/nftlcore.c @@ -19,6 +19,7 @@ #include <linux/slab.h> #include <linux/init.h> #include <linux/hdreg.h> +#include <linux/blkdev.h> #include <linux/kmod.h> #include <linux/mtd/mtd.h> @@ -817,3 +818,4 @@ module_exit(cleanup_nftl); MODULE_LICENSE("GPL"); MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>, Fabrice Bellard <fabrice.bellard@netgem.com> et al."); MODULE_DESCRIPTION("Support code for NAND Flash Translation Layer, used on M-Systems DiskOnChip 2000 and Millennium"); +MODULE_ALIAS_BLOCKDEV_MAJOR(NFTL_MAJOR); |