diff options
author | Martin Kletzander <mkletzan@redhat.com> | 2022-04-25 10:21:47 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-09-22 16:30:07 +0200 |
commit | 79d3e56c2071d402fd55f135aea872d8fe24d269 (patch) | |
tree | 5b52a4332cbcef5ef6101969c1c9d3115763b3a3 /hw/audio/lm4549.h | |
parent | b7639b7dd05de6d4f5ac2a30bb4a7a789286992f (diff) | |
download | qemu-79d3e56c2071d402fd55f135aea872d8fe24d269.zip qemu-79d3e56c2071d402fd55f135aea872d8fe24d269.tar.gz qemu-79d3e56c2071d402fd55f135aea872d8fe24d269.tar.bz2 |
hw/audio/lm4549: Add errp error reporting to init function
This will be used in future commit.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <be1bf295b3c6a3dee272b4b4e8115e37c2a772b5.1650874791.git.mkletzan@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/audio/lm4549.h')
-rw-r--r-- | hw/audio/lm4549.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/audio/lm4549.h b/hw/audio/lm4549.h index aba9bb5..61c3ab1 100644 --- a/hw/audio/lm4549.h +++ b/hw/audio/lm4549.h @@ -36,7 +36,8 @@ typedef struct { extern const VMStateDescription vmstate_lm4549_state; -void lm4549_init(lm4549_state *s, lm4549_callback data_req, void *opaque); +void lm4549_init(lm4549_state *s, lm4549_callback data_req, void *opaque, + Error **errp); uint32_t lm4549_read(lm4549_state *s, hwaddr offset); void lm4549_write(lm4549_state *s, hwaddr offset, uint32_t value); uint32_t lm4549_write_samples(lm4549_state *s, uint32_t left, uint32_t right); |