diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/i386/include/arch/acpi.h | 6 | ||||
-rw-r--r-- | src/arch/i386/include/arch/pci_ops.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/i386/include/arch/acpi.h b/src/arch/i386/include/arch/acpi.h index 4d2cedd10f..1fccd62a7b 100644 --- a/src/arch/i386/include/arch/acpi.h +++ b/src/arch/i386/include/arch/acpi.h @@ -5,9 +5,7 @@ * (C) 2004 SUSE LINUX AG * * The ACPI table structs are based on the Linux kernel sources. - * - */ -/* ACPI FADT & FACS added by Nick Barker <nick.barker9@btinternet.com> + * ACPI FADT & FACS added by Nick Barker <nick.barker9@btinternet.com> * those parts (C) 2004 Nick Barker */ @@ -331,6 +329,8 @@ void acpi_create_facs(acpi_facs_t *facs); void acpi_write_rsdt(acpi_rsdt_t *rsdt); void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt); +unsigned long acpi_add_ssdt_pstates(acpi_rsdt_t *rsdt, unsigned long current); + #define ACPI_WRITE_MADT_IOAPIC(dev,id) \ do { \ struct resource *res; \ diff --git a/src/arch/i386/include/arch/pci_ops.h b/src/arch/i386/include/arch/pci_ops.h index 5972df1d72..04b93196aa 100644 --- a/src/arch/i386/include/arch/pci_ops.h +++ b/src/arch/i386/include/arch/pci_ops.h @@ -1,11 +1,11 @@ #ifndef ARCH_I386_PCI_OPS_H #define ARCH_I386_PCI_OPS_H -const struct pci_bus_operations pci_cf8_conf1; -const struct pci_bus_operations pci_cf8_conf2; +extern const struct pci_bus_operations pci_cf8_conf1; +extern const struct pci_bus_operations pci_cf8_conf2; #if MMCONF_SUPPORT==1 -const struct pci_bus_operations pci_ops_mmconf; +extern const struct pci_bus_operations pci_ops_mmconf; #endif void pci_set_method(device_t dev); |