Changeset 3593
- Timestamp:
- 09/23/08 23:57:33 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/coreboot-v2/src/mainboard/asus/a8v-e_se/acpi_tables.c
r3128 r3593 134 134 acpi_add_table(rsdt, fadt); 135 135 136 printk_debug("ACPI: * HPET\n"); 137 hpet = (acpi_hpet_t *) current; 138 current += sizeof(acpi_hpet_t); 139 acpi_create_hpet(hpet); 140 acpi_add_table(rsdt, hpet); 141 142 /* If we want to use HPET timers Linux wants an MADT. */ 136 /* If we want to use HPET timers Linux wants it in MADT. */ 143 137 printk_debug("ACPI: * MADT\n"); 144 138 madt = (acpi_madt_t *) current; … … 146 140 current += madt->header.length; 147 141 acpi_add_table(rsdt, madt); 148 149 142 printk_debug("ACPI: * MCFG\n"); 150 143 mcfg = (acpi_mcfg_t *) current;
