]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[MTD] Auto-load nftl module when device opened.
authorScott James Remnant <scott@canonical.com>
Mon, 2 Mar 2009 17:43:04 +0000 (17:43 +0000)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Fri, 20 Mar 2009 18:34:00 +0000 (18:34 +0000)
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>
drivers/mtd/nftlcore.c

index f5bcd49694620bfce8528fd8ccc303fbd000f47f..e3f8495a94c27492ccaaca85e0a96a1d478a98cd 100644 (file)
@@ -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);