ctrl: Remove the param parameter as it was never used/implemented
diff --git a/openbsc/include/openbsc/control_cmd.h b/openbsc/include/openbsc/control_cmd.h
index a87c469..4792869 100644
--- a/openbsc/include/openbsc/control_cmd.h
+++ b/openbsc/include/openbsc/control_cmd.h
@@ -66,7 +66,6 @@
 
 struct ctrl_cmd_element {
 	const char *name;
-	const char *param;
 	struct ctrl_cmd_struct strcmd;
 	int (*set)(struct ctrl_cmd *cmd, void *data);
 	int (*get)(struct ctrl_cmd *cmd, void *data);
@@ -125,7 +124,6 @@
 	CTRL_HELPER_VERIFY_RANGE(cmdname, min, max) \
 static struct ctrl_cmd_element cmd_##cmdname = { \
 	.name = cmdstr, \
-	.param = NULL, \
 	.get = &get_##cmdname, \
 	.set = &set_##cmdname, \
 	.verify = &verify_##cmdname, \
@@ -154,7 +152,6 @@
 	CTRL_HELPER_SET_STRING(cmdname, dtype, element) \
 static struct ctrl_cmd_element cmd_##cmdname = { \
 	.name = cmdstr, \
-	.param = NULL, \
 	.get = &get_##cmdname, \
 	.set = &set_##cmdname, \
 	.verify = NULL, \
@@ -166,7 +163,6 @@
 static int verify_##cmdname(struct ctrl_cmd *cmd, const char *value, void *data); \
 static struct ctrl_cmd_element cmd_##cmdname = { \
 	.name = cmdstr, \
-	.param = NULL, \
 	.get = &get_##cmdname, \
 	.set = &set_##cmdname, \
 	.verify = &verify_##cmdname, \
diff --git a/openbsc/src/libbsc/bsc_ctrl_commands.c b/openbsc/src/libbsc/bsc_ctrl_commands.c
index 3759593..4c587dc 100644
--- a/openbsc/src/libbsc/bsc_ctrl_commands.c
+++ b/openbsc/src/libbsc/bsc_ctrl_commands.c
@@ -30,7 +30,6 @@
 	CTRL_HELPER_SET_STRING(cmdname, dtype, element) \
 static struct ctrl_cmd_element cmd_##cmdname = { \
 	.name = cmdstr, \
-	.param = NULL, \
 	.get = get_##cmdname, \
 	.set = set_##cmdname, \
 	.verify = verify_vty_description_string, \
diff --git a/openbsc/src/libctrl/control_cmd.c b/openbsc/src/libctrl/control_cmd.c
index 3c4efc0..db88668 100644
--- a/openbsc/src/libctrl/control_cmd.c
+++ b/openbsc/src/libctrl/control_cmd.c
@@ -142,8 +142,6 @@
 					command->reply = "Value failed verification.";
 				goto out;
 			}
-		} else if (cmd_el->param) {
-			LOGP(DCTRL, LOGL_NOTICE, "Parameter verification unimplemented, continuing without\n");
 		}
 		ret =  cmd_el->set(command, data);
 		goto out;