mirror of https://github.com/xemu-project/xemu.git
We need PCINE2000State for save/load functions
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
377a7f0694
commit
2b7a050abd
10
hw/ne2000.c
10
hw/ne2000.c
|
@ -147,6 +147,11 @@ typedef struct NE2000State {
|
||||||
uint8_t mem[NE2000_MEM_SIZE];
|
uint8_t mem[NE2000_MEM_SIZE];
|
||||||
} NE2000State;
|
} NE2000State;
|
||||||
|
|
||||||
|
typedef struct PCINE2000State {
|
||||||
|
PCIDevice dev;
|
||||||
|
NE2000State ne2000;
|
||||||
|
} PCINE2000State;
|
||||||
|
|
||||||
static void ne2000_reset(NE2000State *s)
|
static void ne2000_reset(NE2000State *s)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
@ -771,11 +776,6 @@ void isa_ne2000_init(int base, qemu_irq irq, NICInfo *nd)
|
||||||
/***********************************************************/
|
/***********************************************************/
|
||||||
/* PCI NE2000 definitions */
|
/* PCI NE2000 definitions */
|
||||||
|
|
||||||
typedef struct PCINE2000State {
|
|
||||||
PCIDevice dev;
|
|
||||||
NE2000State ne2000;
|
|
||||||
} PCINE2000State;
|
|
||||||
|
|
||||||
static void ne2000_map(PCIDevice *pci_dev, int region_num,
|
static void ne2000_map(PCIDevice *pci_dev, int region_num,
|
||||||
uint32_t addr, uint32_t size, int type)
|
uint32_t addr, uint32_t size, int type)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue