[HALX86] Do not define unnamed enums

This commit is contained in:
Victor Perevertkin 2022-04-26 02:38:30 +03:00
parent 522e9f6dd3
commit 4295b007ae
No known key found for this signature in database
GPG key ID: C750B7222E9C7830

View file

@ -170,7 +170,7 @@ typedef enum _APIC_RRS
} APIC_RRS; } APIC_RRS;
/* Timer Constants */ /* Timer Constants */
enum _TIMER_DV typedef enum _TIMER_DV
{ {
TIMER_DV_DivideBy2 = 0, TIMER_DV_DivideBy2 = 0,
TIMER_DV_DivideBy4 = 1, TIMER_DV_DivideBy4 = 1,
@ -277,20 +277,14 @@ typedef union _LVT_REGISTER
} LVT_REGISTER; } LVT_REGISTER;
/* IOAPIC offsets */ /* IOAPIC offsets */
enum #define IOAPIC_IOREGSEL 0x00
{ #define IOAPIC_IOWIN 0x10
IOAPIC_IOREGSEL = 0x00,
IOAPIC_IOWIN = 0x10
};
/* IOAPIC Constants */ /* IOAPIC Constants */
enum #define IOAPIC_ID 0x00
{ #define IOAPIC_VER 0x01
IOAPIC_ID = 0x00, #define IOAPIC_ARB 0x02
IOAPIC_VER = 0x01, #define IOAPIC_REDTBL 0x10
IOAPIC_ARB = 0x02,
IOAPIC_REDTBL = 0x10
};
typedef union _IOAPIC_REDIRECTION_REGISTER typedef union _IOAPIC_REDIRECTION_REGISTER
{ {