mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 03:15:00 +00:00
acpi: Fix typo
Rename ACPI tables MADR to MADT. Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-by: Simon Glass <sjg@chromium.org> Cc: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4a3fc0f525
commit
d016abb47f
1 changed files with 8 additions and 8 deletions
|
@ -386,20 +386,20 @@ struct __packed acpi_madt_lapic_nmi {
|
||||||
u8 lint; /* Local APIC LINT# */
|
u8 lint; /* Local APIC LINT# */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* flags for acpi_madr_gicc flags word */
|
/* flags for acpi_madt_gicc flags word */
|
||||||
enum {
|
enum {
|
||||||
ACPI_MADRF_ENABLED = BIT(0),
|
ACPI_MADTF_ENABLED = BIT(0),
|
||||||
ACPI_MADRF_PERF = BIT(1),
|
ACPI_MADTF_PERF = BIT(1),
|
||||||
ACPI_MADRF_VGIC = BIT(2),
|
ACPI_MADTF_VGIC = BIT(2),
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct __packed acpi_madr_gicc - GIC CPU interface (type 0xb)
|
* struct __packed acpi_madt_gicc - GIC CPU interface (type 0xb)
|
||||||
*
|
*
|
||||||
* This holds information about the Generic Interrupt Controller (GIC) CPU
|
* This holds information about the Generic Interrupt Controller (GIC) CPU
|
||||||
* interface. See ACPI Spec v6.3 section 5.2.12.14
|
* interface. See ACPI Spec v6.3 section 5.2.12.14
|
||||||
*/
|
*/
|
||||||
struct acpi_madr_gicc {
|
struct acpi_madt_gicc {
|
||||||
u8 type;
|
u8 type;
|
||||||
u8 length;
|
u8 length;
|
||||||
u16 reserved;
|
u16 reserved;
|
||||||
|
@ -421,12 +421,12 @@ struct acpi_madr_gicc {
|
||||||
} __packed;
|
} __packed;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct __packed acpi_madr_gicc - GIC distributor (type 0xc)
|
* struct __packed acpi_madt_gicc - GIC distributor (type 0xc)
|
||||||
*
|
*
|
||||||
* This holds information about the Generic Interrupt Controller (GIC)
|
* This holds information about the Generic Interrupt Controller (GIC)
|
||||||
* Distributor interface. See ACPI Spec v6.3 section 5.2.12.15
|
* Distributor interface. See ACPI Spec v6.3 section 5.2.12.15
|
||||||
*/
|
*/
|
||||||
struct acpi_madr_gicd {
|
struct acpi_madt_gicd {
|
||||||
u8 type;
|
u8 type;
|
||||||
u8 length;
|
u8 length;
|
||||||
u16 reserved;
|
u16 reserved;
|
||||||
|
|
Loading…
Add table
Reference in a new issue