aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2018-12-17 22:50:15 +0100
committerBoris Brezillon <bbrezillon@kernel.org>2019-01-08 12:42:57 +0100
commitf9d27de6fafce7b50a6ca6a7696f3d62aee6808e (patch)
tree48304eb491f329543dbbe20f79baaa3ba236a0e7 /drivers/mtd/devices
parentLinux 5.0-rc1 (diff)
downloadlinux-dev-f9d27de6fafce7b50a6ca6a7696f3d62aee6808e.tar.xz
linux-dev-f9d27de6fafce7b50a6ca6a7696f3d62aee6808e.zip
mtd: mtdram: Expose module parameters
Since we can set module parameters also when a driver is built in, it makes no sense to protect module parameter with #ifdef MODULE. Now the mtdram sizes can also set when the module is not a loadable module. Signed-off-by: Richard Weinberger <richard@nod.at> Signed-off-by: Boris Brezillon <bbrezillon@kernel.org>
Diffstat (limited to 'drivers/mtd/devices')
-rw-r--r--drivers/mtd/devices/mtdram.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mtd/devices/mtdram.c b/drivers/mtd/devices/mtdram.c
index 46238796145f..1c97fabc4bf9 100644
--- a/drivers/mtd/devices/mtdram.c
+++ b/drivers/mtd/devices/mtdram.c
@@ -24,14 +24,12 @@ static unsigned long writebuf_size = 64;
#define MTDRAM_TOTAL_SIZE (total_size * 1024)
#define MTDRAM_ERASE_SIZE (erase_size * 1024)
-#ifdef MODULE
module_param(total_size, ulong, 0);
MODULE_PARM_DESC(total_size, "Total device size in KiB");
module_param(erase_size, ulong, 0);
MODULE_PARM_DESC(erase_size, "Device erase block size in KiB");
module_param(writebuf_size, ulong, 0);
MODULE_PARM_DESC(writebuf_size, "Device write buf size in Bytes (Default: 64)");
-#endif
// We could store these in the mtd structure, but we only support 1 device..
static struct mtd_info *mtd_info;