From 418769972dca8ff6af08eabcf47cfe70aaa3cd43 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 19 Nov 2018 09:34:19 +0100 Subject: state: remove unused function state_find_type() is unused and doesn't have a prototype. Remove it. Signed-off-by: Sascha Hauer --- common/state/state_variables.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'common') diff --git a/common/state/state_variables.c b/common/state/state_variables.c index abd714ceda..269d175874 100644 --- a/common/state/state_variables.c +++ b/common/state/state_variables.c @@ -492,19 +492,6 @@ struct variable_type *state_find_type_by_name(const char *name) 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; -- cgit v1.2.3