diff --git a/common/state/state_variables.c b/common/state/state_variables.c index abd714c..269d175 100644 --- a/common/state/state_variables.c +++ b/common/state/state_variables.c @@ -492,19 +492,6 @@ return NULL; } -struct variable_type *state_find_type(const enum state_variable_type type) -{ - int i; - - for (i = 0; i < ARRAY_SIZE(types); i++) { - if (type == types[i].type) { - return &types[i]; - } - } - - return NULL; -} - struct state_variable *state_find_var(struct state *state, const char *name) { struct state_variable *sv;