diff options
| author | Marcel Apfelbaum <marcel.a@redhat.com> | 2014-07-18 19:32:37 +0300 |
|---|---|---|
| committer | Andreas Färber <afaerber@suse.de> | 2014-07-21 18:58:36 +0200 |
| commit | b0ddb8bf6bf1739240640f353fd49e9e5d3f85dc (patch) | |
| tree | 4c65353b98b5ffac28e35b1555929f832d390f11 /hw/core/machine.c | |
| parent | 147fc419734b057b9d9154c2ca0d9d397054104b (diff) | |
| download | focaccia-qemu-b0ddb8bf6bf1739240640f353fd49e9e5d3f85dc.tar.gz focaccia-qemu-b0ddb8bf6bf1739240640f353fd49e9e5d3f85dc.zip | |
machine: Replace underscores in machine's property names
Replaced '_' with '-' to comply with QOM guidelines. Made the conversion from command line to QMP in vl.c. Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/core/machine.c')
| -rw-r--r-- | hw/core/machine.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c index cbba6791d2..7a66c57ab7 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -239,11 +239,11 @@ static void machine_initfn(Object *obj) { object_property_add_str(obj, "accel", machine_get_accel, machine_set_accel, NULL); - object_property_add_bool(obj, "kernel_irqchip", + object_property_add_bool(obj, "kernel-irqchip", machine_get_kernel_irqchip, machine_set_kernel_irqchip, NULL); - object_property_add(obj, "kvm_shadow_mem", "int", + object_property_add(obj, "kvm-shadow-mem", "int", machine_get_kvm_shadow_mem, machine_set_kvm_shadow_mem, NULL, NULL, NULL); @@ -257,11 +257,11 @@ static void machine_initfn(Object *obj) machine_get_dtb, machine_set_dtb, NULL); object_property_add_str(obj, "dumpdtb", machine_get_dumpdtb, machine_set_dumpdtb, NULL); - object_property_add(obj, "phandle_start", "int", + object_property_add(obj, "phandle-start", "int", machine_get_phandle_start, machine_set_phandle_start, NULL, NULL, NULL); - object_property_add_str(obj, "dt_compatible", + object_property_add_str(obj, "dt-compatible", machine_get_dt_compatible, machine_set_dt_compatible, NULL); |