mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
hw/char/parallel: Move portio_list from ParallelState to ISAParallelState
ParallelState::portio_list isn't used inside ParallelState context but only inside ISAParallelState context, so move it there. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu> Message-Id: <20240114123911.4877-4-shentey@gmail.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
ff453ce281
commit
ee3d1f1b46
3 changed files with 3 additions and 3 deletions
|
@ -12,6 +12,7 @@
|
|||
|
||||
#include "parallel.h"
|
||||
|
||||
#include "exec/ioport.h"
|
||||
#include "hw/isa/isa.h"
|
||||
#include "qom/object.h"
|
||||
|
||||
|
@ -25,6 +26,7 @@ struct ISAParallelState {
|
|||
uint32_t iobase;
|
||||
uint32_t isairq;
|
||||
ParallelState state;
|
||||
PortioList portio_list;
|
||||
};
|
||||
|
||||
#endif /* HW_PARALLEL_ISA_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue