summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2022-02-18 12:59:22 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-02-18 12:59:22 +0100
commitf9375977a24c276a9cee2b95d72fa3f3acc371a3 (patch)
tree6a0a80a0d7ec472eb8b708e8e71571726f4d6791 /include
parentba8b2f8a2955585d217af4ef45e70a8787be61bb (diff)
parent92489ea9cce3b892d3deefe21cfa2cf1a4f870ac (diff)
downloadbarebox-f9375977a24c276a9cee2b95d72fa3f3acc371a3.tar.gz
barebox-f9375977a24c276a9cee2b95d72fa3f3acc371a3.tar.xz
Merge branch 'for-next/state'
Diffstat (limited to 'include')
-rw-r--r--include/state.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/include/state.h b/include/state.h
index be1b592576..bffcd5a900 100644
--- a/include/state.h
+++ b/include/state.h
@@ -12,7 +12,8 @@ struct state *state_new_from_node(struct device_node *node, bool readonly);
void state_release(struct state *state);
struct state *state_by_name(const char *name);
-struct state *state_by_node(const struct device_node *node);
+struct state *state_by_node(struct device_node *node);
+struct state *state_by_alias(const char *alias);
int state_load_no_auth(struct state *state);
int state_load(struct state *state);
@@ -34,10 +35,15 @@ static inline struct state *state_by_name(const char *name)
return NULL;
}
-static inline struct state *state_by_node(const struct device_node *node)
+static inline struct state *state_by_node(struct device_node *node)
{
return NULL;
-};
+}
+
+static inline struct state *state_by_alias(const char *alias)
+{
+ return NULL;
+}
static inline int state_load(struct state *state)
{