diff options
| author | Marc-André Lureau | 2018-12-04 15:20:06 +0100 |
|---|---|---|
| committer | Eduardo Habkost | 2018-12-11 18:45:22 +0100 |
| commit | aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2 (patch) | |
| tree | f9c797fb1b6eaa12c268d32f83ba484df9b5c4a3 /include/hw/isa | |
| parent | tests: qdev_prop_check_globals() doesn't return "all_used" (diff) | |
| download | qemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.tar.gz qemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.tar.xz qemu-aa1b35b975d83a1ee3b5d1a1ae200a59ca44f8d2.zip | |
qom: make interface types abstract
Interfaces don't have instance, let's make the interface type really
abstract to avoid confusion.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20181204142023.15982-3-marcandre.lureau@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/hw/isa')
| -rw-r--r-- | include/hw/isa/isa.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/hw/isa/isa.h b/include/hw/isa/isa.h index b9dbab24b4..e62ac91c19 100644 --- a/include/hw/isa/isa.h +++ b/include/hw/isa/isa.h @@ -43,10 +43,6 @@ static inline uint16_t applesmc_port(void) #define ISADMA(obj) \ INTERFACE_CHECK(IsaDma, (obj), TYPE_ISADMA) -struct IsaDma { - Object parent; -}; - typedef enum { ISADMA_TRANSFER_VERIFY, ISADMA_TRANSFER_READ, |
