diff options
author | Eduardo Habkost | 2020-08-25 21:20:16 +0200 |
---|---|---|
committer | Eduardo Habkost | 2020-08-27 20:04:54 +0200 |
commit | 3c03b563706bcf64ad4d8d63bd56e5bfb8141efc (patch) | |
tree | d71f60503f1d7be765b28fe56fb6537bd453e478 /include/hw/m68k | |
parent | hvf: Move HVFState typedef to hvf.h (diff) | |
download | qemu-3c03b563706bcf64ad4d8d63bd56e5bfb8141efc.tar.gz qemu-3c03b563706bcf64ad4d8d63bd56e5bfb8141efc.tar.xz qemu-3c03b563706bcf64ad4d8d63bd56e5bfb8141efc.zip |
mcf_fec: Move mcf_fec_state typedef to header
Move typedef closer to the type check macros, to make it easier
to convert the code to OBJECT_DEFINE_TYPE() in the future.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Tested-By: Roman Bolshakov <r.bolshakov@yadro.com>
Message-Id: <20200825192110.3528606-21-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/hw/m68k')
-rw-r--r-- | include/hw/m68k/mcf_fec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/m68k/mcf_fec.h b/include/hw/m68k/mcf_fec.h index eeb471f9c9..c09e33a57c 100644 --- a/include/hw/m68k/mcf_fec.h +++ b/include/hw/m68k/mcf_fec.h @@ -11,6 +11,7 @@ #define HW_M68K_MCF_FEC_H #define TYPE_MCF_FEC_NET "mcf-fec" +typedef struct mcf_fec_state mcf_fec_state; #define MCF_FEC_NET(obj) OBJECT_CHECK(mcf_fec_state, (obj), TYPE_MCF_FEC_NET) #define FEC_NUM_IRQ 13 |