diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2011-12-14 22:05:49 -0500 |
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:18:55 -0500 |
| commit | f9fbcdc357f37d6c82a75a89c64efbe8bd5274e1 (patch) | |
| tree | 538815c476b5cd2ecd195a0eb415a9e4b240edcd | |
| parent | e10019bce9cbeb7675d5d08221012a2cfee0d498 (diff) | |
mtd: sm_ftl: fix module parameter
You didn't mean this to be a bool.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
| -rw-r--r-- | drivers/mtd/sm_ftl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/sm_ftl.c b/drivers/mtd/sm_ftl.c index fddb714e323..1c9f307ae0a 100644 --- a/drivers/mtd/sm_ftl.c +++ b/drivers/mtd/sm_ftl.c | |||
| @@ -25,7 +25,7 @@ | |||
| 25 | struct workqueue_struct *cache_flush_workqueue; | 25 | struct workqueue_struct *cache_flush_workqueue; |
| 26 | 26 | ||
| 27 | static int cache_timeout = 1000; | 27 | static int cache_timeout = 1000; |
| 28 | module_param(cache_timeout, bool, S_IRUGO); | 28 | module_param(cache_timeout, int, S_IRUGO); |
| 29 | MODULE_PARM_DESC(cache_timeout, | 29 | MODULE_PARM_DESC(cache_timeout, |
| 30 | "Timeout (in ms) for cache flush (1000 ms default"); | 30 | "Timeout (in ms) for cache flush (1000 ms default"); |
| 31 | 31 | ||
