summaryrefslogtreecommitdiff
path: root/src/acpi
diff options
context:
space:
mode:
Diffstat (limited to 'src/acpi')
-rw-r--r--src/acpi/sata.c3
-rw-r--r--src/acpi/sata.h11
2 files changed, 1 insertions, 13 deletions
diff --git a/src/acpi/sata.c b/src/acpi/sata.c
index f2f53e6f64..110742e84c 100644
--- a/src/acpi/sata.c
+++ b/src/acpi/sata.c
@@ -1,10 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
-#include "sata.h"
-
#include <acpi/acpi.h>
#include <acpi/acpigen.h>
+#include <acpi/acpi_sata.h>
/* e.g.
* generate_sata_ssdt_ports("\_SB.PCI0.SATA", 0x3);
diff --git a/src/acpi/sata.h b/src/acpi/sata.h
deleted file mode 100644
index 5ca2eac254..0000000000
--- a/src/acpi/sata.h
+++ /dev/null
@@ -1,11 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-/* This file is part of the coreboot project. */
-
-#ifndef __ACPI_SATA_H__
-#define __ACPI_SATA_H__
-
-#include <stdint.h>
-
-void generate_sata_ssdt_ports(const char *scope, uint32_t enable_map);
-
-#endif