diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 17:26:45 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:56:34 -0600 |
| commit | 44f2f4bc3005eb48ebabea4f33466498db3ea0f2 (patch) | |
| tree | 69d7c0d10486959ffbfd25002b5ee4a7a60a3a02 /hw/usb/ccid-card-emulated.c | |
| parent | 35d71fd9cea66b0c66d94b9e29bfb85781ad6e7f (diff) | |
| download | focaccia-qemu-44f2f4bc3005eb48ebabea4f33466498db3ea0f2.tar.gz focaccia-qemu-44f2f4bc3005eb48ebabea4f33466498db3ea0f2.zip | |
hw/usb: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/usb/ccid-card-emulated.c')
| -rw-r--r-- | hw/usb/ccid-card-emulated.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/ccid-card-emulated.c b/hw/usb/ccid-card-emulated.c index 3ee9c73b87..dd58333943 100644 --- a/hw/usb/ccid-card-emulated.c +++ b/hw/usb/ccid-card-emulated.c @@ -582,7 +582,7 @@ static void emulated_unrealize(CCIDCardState *base) qemu_mutex_destroy(&card->event_list_mutex); } -static Property emulated_card_properties[] = { +static const Property emulated_card_properties[] = { DEFINE_PROP_STRING("backend", EmulatedState, backend_str), DEFINE_PROP_STRING("cert1", EmulatedState, cert1), DEFINE_PROP_STRING("cert2", EmulatedState, cert2), |