diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-18 07:42:35 -0600 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-19 19:33:37 +0100 |
commit | 624cdd89afe43c150b2e685378e4f34aaade0b58 (patch) | |
tree | 46c2cc48a3b3a202f3e32b67ba21324145b6f938 | |
parent | 7f6afa997c4ba1eb335c947dbd94784fadd74c8e (diff) | |
download | qemu-624cdd89afe43c150b2e685378e4f34aaade0b58.zip qemu-624cdd89afe43c150b2e685378e4f34aaade0b58.tar.gz qemu-624cdd89afe43c150b2e685378e4f34aaade0b58.tar.bz2 |
hw/s390x: Remove empty Property lists
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Lei Yang <leiyang@redhat.com>
Link: https://lore.kernel.org/r/20241218134251.4724-9-richard.henderson@linaro.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | hw/s390x/3270-ccw.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/s390x/3270-ccw.c b/hw/s390x/3270-ccw.c index 69e6783..3a8930d 100644 --- a/hw/s390x/3270-ccw.c +++ b/hw/s390x/3270-ccw.c @@ -150,15 +150,10 @@ out_err: g_free(sch); } -static Property emulated_ccw_3270_properties[] = { - DEFINE_PROP_END_OF_LIST(), -}; - static void emulated_ccw_3270_class_init(ObjectClass *klass, void *data) { DeviceClass *dc = DEVICE_CLASS(klass); - device_class_set_props(dc, emulated_ccw_3270_properties); dc->realize = emulated_ccw_3270_realize; dc->hotpluggable = false; set_bit(DEVICE_CATEGORY_DISPLAY, dc->categories); |