diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 16:35:23 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:55:54 -0600 |
| commit | 909a5c0afa1dd52e8145716fc36d12ba6b74721f (patch) | |
| tree | 4248ee972087bc819f2706fdc0e483dc573aa53d /hw/pci-host/gt64120.c | |
| parent | 196fd15f31d986e5a9c5da84988fa4597f30623b (diff) | |
| download | focaccia-qemu-909a5c0afa1dd52e8145716fc36d12ba6b74721f.tar.gz focaccia-qemu-909a5c0afa1dd52e8145716fc36d12ba6b74721f.zip | |
hw/pci-host: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/pci-host/gt64120.c')
| -rw-r--r-- | hw/pci-host/gt64120.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci-host/gt64120.c b/hw/pci-host/gt64120.c index 14fc803d27..3c73ebe83f 100644 --- a/hw/pci-host/gt64120.c +++ b/hw/pci-host/gt64120.c @@ -1274,7 +1274,7 @@ static const TypeInfo gt64120_pci_info = { }, }; -static Property gt64120_properties[] = { +static const Property gt64120_properties[] = { DEFINE_PROP_BOOL("cpu-little-endian", GT64120State, cpu_little_endian, false), DEFINE_PROP_END_OF_LIST(), |