summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2018-06-11 22:36:28 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2018-06-11 22:36:28 +0200
commit8e336580a1e1f8786162bcfa56c2c9dcc99b8f4f (patch)
treef2e314d9a235d4b3780f89cb2f88c7e4d2e7795d /include
parent8985573ad66c9fb011910a352b8c1427ee08ded3 (diff)
parent58243d98b3f8e000c674a78a9466bd2fce213cc6 (diff)
downloadbarebox-8e336580a1e1f8786162bcfa56c2c9dcc99b8f4f.tar.gz
barebox-8e336580a1e1f8786162bcfa56c2c9dcc99b8f4f.tar.xz
Merge branch 'for-next/of-bootsource'
Diffstat (limited to 'include')
-rw-r--r--include/bootsource.h2
-rw-r--r--include/of.h6
2 files changed, 8 insertions, 0 deletions
diff --git a/include/bootsource.h b/include/bootsource.h
index 064f6b9a28..29347aaeb0 100644
--- a/include/bootsource.h
+++ b/include/bootsource.h
@@ -25,5 +25,7 @@ enum bootsource bootsource_get(void);
int bootsource_get_instance(void);
void bootsource_set(enum bootsource src);
void bootsource_set_instance(int instance);
+void bootsource_set_alias_name(const char *name);
+char *bootsource_get_alias_name(void);
#endif /* __BOOTSOURCE_H__ */
diff --git a/include/of.h b/include/of.h
index fec51bb94f..7fc4b7791f 100644
--- a/include/of.h
+++ b/include/of.h
@@ -94,6 +94,12 @@ static inline void of_write_number(void *__cell, u64 val, int size)
}
}
+static inline const void *of_property_get_value(struct property *pp)
+{
+ return pp->value ? pp->value : pp->value_const;
+}
+
+
void of_print_property(const void *data, int len);
void of_print_cmdline(struct device_node *root);