]> git.proxmox.com Git - qemu.git/commitdiff
dt: make setprop argument static
authorAlexander Graf <agraf@suse.de>
Wed, 20 Jun 2012 18:39:59 +0000 (20:39 +0200)
committerAlexander Graf <agraf@suse.de>
Sat, 23 Jun 2012 23:04:51 +0000 (01:04 +0200)
Whatever we pass in to qemu_devtree_setprop to put into the device tree
will not get modified by that function, so it can easily be declared const.

Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
device_tree.c
device_tree.h

index acae53e6b6319619eb96c34685af35631027adec..b366fddeaf3b4066fc900e1bb127f08fb3f80348 100644 (file)
@@ -127,7 +127,7 @@ static int findnode_nofail(void *fdt, const char *node_path)
 }
 
 int qemu_devtree_setprop(void *fdt, const char *node_path,
-                         const char *property, void *val_array, int size)
+                         const char *property, const void *val_array, int size)
 {
     int r;
 
index 4898d957afb63e061fac76e3e7bdcdf2105a9bd3..2244270b2d1f3862641e81470ee954d7bd9e0b42 100644 (file)
@@ -18,7 +18,7 @@ void *create_device_tree(int *sizep);
 void *load_device_tree(const char *filename_path, int *sizep);
 
 int qemu_devtree_setprop(void *fdt, const char *node_path,
-                         const char *property, void *val_array, int size);
+                         const char *property, const void *val_array, int size);
 int qemu_devtree_setprop_cell(void *fdt, const char *node_path,
                               const char *property, uint32_t val);
 int qemu_devtree_setprop_u64(void *fdt, const char *node_path,