From: Rusty Russell Date: Thu, 15 Dec 2011 03:05:49 +0000 (+1030) Subject: mtd: sm_ftl: fix module parameter X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f9fbcdc357f37d6c82a75a89c64efbe8bd5274e1;p=linux-beck.git mtd: sm_ftl: fix module parameter You didn't mean this to be a bool. Signed-off-by: Rusty Russell Signed-off-by: Artem Bityutskiy Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/sm_ftl.c b/drivers/mtd/sm_ftl.c index fddb714e323c..1c9f307ae0a1 100644 --- a/drivers/mtd/sm_ftl.c +++ b/drivers/mtd/sm_ftl.c @@ -25,7 +25,7 @@ struct workqueue_struct *cache_flush_workqueue; static int cache_timeout = 1000; -module_param(cache_timeout, bool, S_IRUGO); +module_param(cache_timeout, int, S_IRUGO); MODULE_PARM_DESC(cache_timeout, "Timeout (in ms) for cache flush (1000 ms default");