diff options
author | Eduardo Habkost | 2020-12-11 23:05:12 +0100 |
---|---|---|
committer | Eduardo Habkost | 2020-12-18 21:20:17 +0100 |
commit | ce35e2295ea10caa97e223c1254e345a888e7ed8 (patch) | |
tree | dbd57414b4639f2e968fb9e140c2a0ff15eacfea /include/net/net.h | |
parent | Merge remote-tracking branch 'remotes/alistair/tags/pull-riscv-to-apply-20201... (diff) | |
download | qemu-ce35e2295ea10caa97e223c1254e345a888e7ed8.tar.gz qemu-ce35e2295ea10caa97e223c1254e345a888e7ed8.tar.xz qemu-ce35e2295ea10caa97e223c1254e345a888e7ed8.zip |
qdev: Move softmmu properties to qdev-properties-system.h
Move the property types and property macros implemented in
qdev-properties-system.c to a new qdev-properties-system.h
header.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Message-Id: <20201211220529.2290218-16-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/net/net.h')
-rw-r--r-- | include/net/net.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/net.h b/include/net/net.h index 778fc787ca..919facaad2 100644 --- a/include/net/net.h +++ b/include/net/net.h @@ -4,6 +4,7 @@ #include "qemu/queue.h" #include "qapi/qapi-types-net.h" #include "net/queue.h" +#include "hw/qdev-properties-system.h" #define MAC_FMT "%02X:%02X:%02X:%02X:%02X:%02X" #define MAC_ARG(x) ((uint8_t *)(x))[0], ((uint8_t *)(x))[1], \ |