state_find_type() is unused and doesn't have a prototype. Remove it.

Signed-off-by: Sascha Hauer <[email protected]>
---
 common/state/state_variables.c | 13 -------------
 1 file changed, 13 deletions(-)

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;
-- 
2.19.1


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to