diff options
author | Rob Herring <robh@kernel.org> | 2014-04-02 00:49:03 -0400 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2014-04-30 01:59:15 -0400 |
commit | 9d0c4dfedd96ee54fc075b16d02f82499c8cc3a6 (patch) | |
tree | bb76a58e00f5aa436c51c1db9841e89ab102d004 /arch/powerpc/kernel/rtas.c | |
parent | bba04d965d06abbbe10afd3687742389107e198e (diff) |
of/fdt: update of_get_flat_dt_prop in prep for libfdt
Make of_get_flat_dt_prop arguments compatible with libfdt fdt_getprop
call in preparation to convert FDT code to use libfdt. Make the return
value const and the property length ptr type an int.
Signed-off-by: Rob Herring <robh@kernel.org>
Tested-by: Michal Simek <michal.simek@xilinx.com>
Tested-by: Grant Likely <grant.likely@linaro.org>
Tested-by: Stephen Chivers <schivers@csc.com>
Diffstat (limited to 'arch/powerpc/kernel/rtas.c')
-rw-r--r-- | arch/powerpc/kernel/rtas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c index 8cd5ed049b5d..8b4c857c1421 100644 --- a/arch/powerpc/kernel/rtas.c +++ b/arch/powerpc/kernel/rtas.c | |||
@@ -1142,7 +1142,7 @@ void __init rtas_initialize(void) | |||
1142 | int __init early_init_dt_scan_rtas(unsigned long node, | 1142 | int __init early_init_dt_scan_rtas(unsigned long node, |
1143 | const char *uname, int depth, void *data) | 1143 | const char *uname, int depth, void *data) |
1144 | { | 1144 | { |
1145 | u32 *basep, *entryp, *sizep; | 1145 | const u32 *basep, *entryp, *sizep; |
1146 | 1146 | ||
1147 | if (depth != 1 || strcmp(uname, "rtas") != 0) | 1147 | if (depth != 1 || strcmp(uname, "rtas") != 0) |
1148 | return 0; | 1148 | return 0; |