From: Scott James Remnant Date: Mon, 2 Mar 2009 17:43:04 +0000 (+0000) Subject: [MTD] Auto-load nftl module when device opened. X-Git-Tag: v2.6.30-rc1~143^2~35 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=e7f521636a2d6b1a012f98f6ec16898c5d6f1543;p=~shefty%2Frdma-dev.git [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 Signed-off-by: Tim Gardner Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/nftlcore.c b/drivers/mtd/nftlcore.c index f5bcd496946..e3f8495a94c 100644 --- a/drivers/mtd/nftlcore.c +++ b/drivers/mtd/nftlcore.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include @@ -817,3 +818,4 @@ module_exit(cleanup_nftl); MODULE_LICENSE("GPL"); MODULE_AUTHOR("David Woodhouse , Fabrice Bellard 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);