diff options
| author | Eduardo Habkost | 2020-08-31 23:07:33 +0200 |
|---|---|---|
| committer | Eduardo Habkost | 2020-09-18 19:49:48 +0200 |
| commit | e38d3c5ce5f6e69cf0d87a484d556be0d737d83d (patch) | |
| tree | 2749653e7c8677c916eb63b3d0aa7e75349017e5 /hw/intc | |
| parent | sifive: Move QOM typedefs and add missing includes (diff) | |
| download | qemu-e38d3c5ce5f6e69cf0d87a484d556be0d737d83d.tar.gz qemu-e38d3c5ce5f6e69cf0d87a484d556be0d737d83d.tar.xz qemu-e38d3c5ce5f6e69cf0d87a484d556be0d737d83d.zip | |
sifive: Use DECLARE_*CHECKER* macros
$ ./scripts/codeconverter/converter.py -i \
--pattern=TypeCheckMacro $(git grep -l '' -- '*.[ch]')
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20200831210740.126168-12-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/intc')
| -rw-r--r-- | hw/intc/sifive_plic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/intc/sifive_plic.h b/hw/intc/sifive_plic.h index aa6ae13c3a..b75b1f145d 100644 --- a/hw/intc/sifive_plic.h +++ b/hw/intc/sifive_plic.h @@ -27,8 +27,8 @@ #define TYPE_SIFIVE_PLIC "riscv.sifive.plic" typedef struct SiFivePLICState SiFivePLICState; -#define SIFIVE_PLIC(obj) \ - OBJECT_CHECK(SiFivePLICState, (obj), TYPE_SIFIVE_PLIC) +DECLARE_INSTANCE_CHECKER(SiFivePLICState, SIFIVE_PLIC, + TYPE_SIFIVE_PLIC) typedef enum PLICMode { PLICMode_U, |
