summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich Ölmann <u.oelmann@pengutronix.de>2019-09-30 09:26:10 +0200
committerRoland Hieber <rhi@pengutronix.de>2019-10-11 16:49:39 +0200
commite267c877e2eebeec1591b182d047afc5ff5d452f (patch)
treed00c6e68301b85df0dc4853b48b3b16ea2ee863c
parent20fb10ce5d55676754c1df9c0c8bed34c9aa9aeb (diff)
downloaddt-utils-e267c877e2eebeec1591b182d047afc5ff5d452f.tar.gz
dt-utils-e267c877e2eebeec1591b182d047afc5ff5d452f.tar.xz
state: harmonize code with barebox
Sort the function declarations in the same order that barebox uses. Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
-rw-r--r--src/state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.h b/src/state.h
index c4db9fe..a49155e 100644
--- a/src/state.h
+++ b/src/state.h
@@ -12,8 +12,8 @@ void state_release(struct state *state);
struct state *state_by_name(const char *name);
struct state *state_by_node(const struct device_node *node);
-int state_load(struct state *state);
int state_load_no_auth(struct state *state);
+int state_load(struct state *state);
int state_save(struct state *state);
void state_info(void);