ctrl: Make the commands static to not pollute the namespace

We do not need to access these commands from another compilation
unit and can just make it static.
diff --git a/openbsc/include/openbsc/control_cmd.h b/openbsc/include/openbsc/control_cmd.h
index ba18ad8..d6292be 100644
--- a/openbsc/include/openbsc/control_cmd.h
+++ b/openbsc/include/openbsc/control_cmd.h
@@ -112,7 +112,7 @@
 	} \
 	return -1; \
 } \
-struct ctrl_cmd_element cmd_##cmdname = { \
+static struct ctrl_cmd_element cmd_##cmdname = { \
 	.name = cmdstr, \
 	.param = NULL, \
 	.get = &get_##cmdname, \
@@ -137,7 +137,7 @@
 	bsc_replace_string(cmd->node, &data->element, cmd->value); \
 	return get_##cmdname(cmd, _data); \
 } \
-struct ctrl_cmd_element cmd_##cmdname = { \
+static struct ctrl_cmd_element cmd_##cmdname = { \
 	.name = cmdstr, \
 	.param = NULL, \
 	.get = &get_##cmdname, \
@@ -149,7 +149,7 @@
 static int get_##cmdname(struct ctrl_cmd *cmd, void *data); \
 static int set_##cmdname(struct ctrl_cmd *cmd, void *data); \
 static int verify_##cmdname(struct ctrl_cmd *cmd, const char *value, void *data); \
-struct ctrl_cmd_element cmd_##cmdname = { \
+static struct ctrl_cmd_element cmd_##cmdname = { \
 	.name = cmdstr, \
 	.param = NULL, \
 	.get = &get_##cmdname, \