diff options
author | Richard Weinberger <richard@nod.at> | 2014-03-19 06:43:22 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2014-03-21 13:37:03 -0400 |
commit | d56030ac25d383218045c5d87e98e0494d6af3ad (patch) | |
tree | 8721ecf83b33c5dd1a3c4e174881b23f0845846e | |
parent | 463c5eedb4a13b9aa91f05498a0f2c20bd03f8c4 (diff) |
UBI: block: Remove __initdata from ubiblock_param_ops
You cannot mark these parameters as __initdata.
Otherwise the data is gone upon module exit.
Fixes:
[ 172.045465] BUG: unable to handle kernel paging request at ffffffffa001db38
[ 172.046020] IP: [<ffffffff81067aa4>] destroy_params+0x24/0x50
Signed-off-by: Richard Weinberger <richard@nod.at>
Acked-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
-rw-r--r-- | drivers/mtd/ubi/block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/block.c b/drivers/mtd/ubi/block.c index 69a74fd07978..7ff473c871a9 100644 --- a/drivers/mtd/ubi/block.c +++ b/drivers/mtd/ubi/block.c | |||
@@ -156,7 +156,7 @@ static int __init ubiblock_set_param(const char *val, | |||
156 | return 0; | 156 | return 0; |
157 | } | 157 | } |
158 | 158 | ||
159 | static struct kernel_param_ops ubiblock_param_ops __initdata = { | 159 | static struct kernel_param_ops ubiblock_param_ops = { |
160 | .set = ubiblock_set_param, | 160 | .set = ubiblock_set_param, |
161 | }; | 161 | }; |
162 | module_param_cb(block, &ubiblock_param_ops, NULL, 0); | 162 | module_param_cb(block, &ubiblock_param_ops, NULL, 0); |