From be5907f2cc6d075b1d687e51a0e0d8ac074a7ac8 Mon Sep 17 00:00:00 2001 From: Peter Crosthwaite Date: Mon, 11 Nov 2013 18:15:21 +1000 Subject: device_tree: qemu_fdt_setprop: Rename val_array arg Looking at the implementation, this doesn't really have a lot to do with arrays. Its just a pointer to a buffer and is passed through to the wrapped fn (qemu_fdt_setprop) unchanged. So rename to make it consistent with libfdt, which in the wrapped function just calls it "val". Signed-off-by: Peter Crosthwaite Signed-off-by: Alexander Graf --- include/sysemu/device_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/sysemu/device_tree.h b/include/sysemu/device_tree.h index 68da97a3b4..899f05c138 100644 --- a/include/sysemu/device_tree.h +++ b/include/sysemu/device_tree.h @@ -18,7 +18,7 @@ void *create_device_tree(int *sizep); void *load_device_tree(const char *filename_path, int *sizep); int qemu_fdt_setprop(void *fdt, const char *node_path, - const char *property, const void *val_array, int size); + const char *property, const void *val, int size); int qemu_fdt_setprop_cell(void *fdt, const char *node_path, const char *property, uint32_t val); int qemu_fdt_setprop_u64(void *fdt, const char *node_path, -- cgit v1.2.3