mac_newworld: Turn CORE99_VIA_CONFIG defines into an enum

This might allow the compiler to check values.

Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Message-Id: <f9da172e486c1f57f8542c7c3cb0223cffa89b1f.1666957578.git.balaton@eik.bme.hu>
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
This commit is contained in:
BALATON Zoltan 2022-10-28 13:56:30 +02:00 committed by Mark Cave-Ayland
parent cc537e1338
commit 53cb552dae

View file

@ -95,15 +95,17 @@ typedef struct Core99MachineState Core99MachineState;
DECLARE_INSTANCE_CHECKER(Core99MachineState, CORE99_MACHINE, DECLARE_INSTANCE_CHECKER(Core99MachineState, CORE99_MACHINE,
TYPE_CORE99_MACHINE) TYPE_CORE99_MACHINE)
#define CORE99_VIA_CONFIG_CUDA 0x0 typedef enum {
#define CORE99_VIA_CONFIG_PMU 0x1 CORE99_VIA_CONFIG_CUDA = 0,
#define CORE99_VIA_CONFIG_PMU_ADB 0x2 CORE99_VIA_CONFIG_PMU,
CORE99_VIA_CONFIG_PMU_ADB
} Core99ViaConfig;
struct Core99MachineState { struct Core99MachineState {
/*< private >*/ /*< private >*/
MachineState parent; MachineState parent;
uint8_t via_config; Core99ViaConfig via_config;
}; };
static void fw_cfg_boot_set(void *opaque, const char *boot_device, static void fw_cfg_boot_set(void *opaque, const char *boot_device,