Commit 639f642c authored by Philippe Mathieu-Daudé's avatar Philippe Mathieu-Daudé Committed by Thomas Huth
Browse files

hw/i386: Remove PCMachineClass from "qemu/typedefs.h"



Files requiring PCMachineClass already include "hw/i386/pc.h".

To clean "qemu/typedefs.h", move the declaration to "hw/i386/pc.h"
(removing the forward declaration).

Signed-off-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
parent 1451b404
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ struct PCMachineState {
 *                  way we can use 1GByte pages in the host.
 *
 */
struct PCMachineClass {
typedef struct PCMachineClass {
    /*< private >*/
    MachineClass parent_class;

@@ -133,7 +133,7 @@ struct PCMachineClass {

    /* use DMA capable linuxboot option rom */
    bool linuxboot_dma_enabled;
};
} PCMachineClass;

#define TYPE_PC_MACHINE "generic-pc-machine"
#define PC_MACHINE(obj) \
+0 −1
Original line number Diff line number Diff line
@@ -74,7 +74,6 @@ typedef struct PCIExpressDevice PCIExpressDevice;
typedef struct PCIExpressHost PCIExpressHost;
typedef struct PCIHostDeviceAddress PCIHostDeviceAddress;
typedef struct PCIHostState PCIHostState;
typedef struct PCMachineClass PCMachineClass;
typedef struct PCMachineState PCMachineState;
typedef struct PixelFormat PixelFormat;
typedef struct PostcopyDiscardState PostcopyDiscardState;