[PATCH 2/2] UBI: block: Implement kernel_param_ops->get()

From: Richard Weinberger
Date: Wed Mar 19 2014 - 06:44:02 EST


The ->get() function is not optional.

Signed-off-by: Richard Weinberger <richard@xxxxxx>
---
drivers/mtd/ubi/block.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/ubi/block.c b/drivers/mtd/ubi/block.c
index 7ff473c..9ef7df7 100644
--- a/drivers/mtd/ubi/block.c
+++ b/drivers/mtd/ubi/block.c
@@ -158,6 +158,7 @@ static int __init ubiblock_set_param(const char *val,

static struct kernel_param_ops ubiblock_param_ops = {
.set = ubiblock_set_param,
+ .get = param_get_charp,
};
module_param_cb(block, &ubiblock_param_ops, NULL, 0);
MODULE_PARM_DESC(block, "Attach block devices to UBI volumes. Parameter format: block=<path|dev,num|dev,name>.\n"
--
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/