aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/of.h
diff options
context:
space:
mode:
authorAlistair Popple <alistair@popple.id.au>2017-04-03 19:51:42 +1000
committerMichael Ellerman <mpe@ellerman.id.au>2017-04-03 23:35:59 +1000
commit2475a2b6c877a0c8d1ca42c3f2b30f8ce518ac0b (patch)
treeb4413f8113475bc42b6f7dd3a371ba6b568f70eb /include/linux/of.h
parentpowerpc/mm: Remove stale comment about the DART hole (diff)
downloadlinux-dev-2475a2b6c877a0c8d1ca42c3f2b30f8ce518ac0b.tar.xz
linux-dev-2475a2b6c877a0c8d1ca42c3f2b30f8ce518ac0b.zip
drivers/of/base.c: Add of_property_read_u64_index
There is of_property_read_u32_index but no u64 variant. This patch adds one similar to the u32 version for u64. Signed-off-by: Alistair Popple <alistair@popple.id.au> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'include/linux/of.h')
-rw-r--r--include/linux/of.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h
index 21e6323de0f3..d08788daae5c 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -292,6 +292,9 @@ extern int of_property_count_elems_of_size(const struct device_node *np,
extern int of_property_read_u32_index(const struct device_node *np,
const char *propname,
u32 index, u32 *out_value);
+extern int of_property_read_u64_index(const struct device_node *np,
+ const char *propname,
+ u32 index, u64 *out_value);
extern int of_property_read_variable_u8_array(const struct device_node *np,
const char *propname, u8 *out_values,
size_t sz_min, size_t sz_max);