diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-13 15:05:59 +0000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-12-15 12:54:30 -0600 |
| commit | ed1e71dac96a3bf2236ece81916d4fc1ccbce029 (patch) | |
| tree | 3296edaeb14d5fbaed44779b98c3c92aaa90271c /hw/audio/sb16.c | |
| parent | e15bd5dd059a8833dd30da2b78ab4f43e917f216 (diff) | |
| download | focaccia-qemu-ed1e71dac96a3bf2236ece81916d4fc1ccbce029.tar.gz focaccia-qemu-ed1e71dac96a3bf2236ece81916d4fc1ccbce029.zip | |
hw/audio: Constify all Property
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/audio/sb16.c')
| -rw-r--r-- | hw/audio/sb16.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/audio/sb16.c b/hw/audio/sb16.c index fd76e78d18..143b9e71e1 100644 --- a/hw/audio/sb16.c +++ b/hw/audio/sb16.c @@ -1440,7 +1440,7 @@ static void sb16_realizefn (DeviceState *dev, Error **errp) s->can_write = 1; } -static Property sb16_properties[] = { +static const Property sb16_properties[] = { DEFINE_AUDIO_PROPERTIES(SB16State, card), DEFINE_PROP_UINT32 ("version", SB16State, ver, 0x0405), /* 4.5 */ DEFINE_PROP_UINT32 ("iobase", SB16State, port, 0x220), |