summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/hci/commands/nvo_cmd.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/hci/commands/nvo_cmd.c b/src/hci/commands/nvo_cmd.c
index bbc9a7496..91c132059 100644
--- a/src/hci/commands/nvo_cmd.c
+++ b/src/hci/commands/nvo_cmd.c
@@ -38,11 +38,6 @@ static int show_exec ( int argc, char **argv ) {
return 0;
}
-struct command show_command __command = {
- .name = "show",
- .exec = show_exec,
-};
-
static int set_exec ( int argc, char **argv ) {
struct config_context dummy_context;
int rc;
@@ -74,11 +69,6 @@ static int set_exec ( int argc, char **argv ) {
return 0;
}
-struct command set_command __command = {
- .name = "set",
- .exec = set_exec,
-};
-
static int clear_exec ( int argc, char **argv ) {
struct config_context dummy_context;
int rc;
@@ -104,7 +94,17 @@ static int clear_exec ( int argc, char **argv ) {
return 0;
}
-struct command clear_command __command = {
- .name = "clear",
- .exec = clear_exec,
+struct command nvo_commands[] __command = {
+ {
+ .name = "show",
+ .exec = show_exec,
+ },
+ {
+ .name = "set",
+ .exec = set_exec,
+ },
+ {
+ .name = "clear",
+ .exec = clear_exec,
+ },
};