aboutsummaryrefslogtreecommitdiff
path: root/src/include/acpi/acpigen_dsm.h
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-04-30 18:38:55 -0700
committerFurquan Shaikh <furquan@google.com>2020-05-02 20:41:13 +0000
commit56eafbbc3ac6ea01a03daf4b54a989d3d44260ae (patch)
treefbb3721117e746ccf0eede4198d2ece679242384 /src/include/acpi/acpigen_dsm.h
parente5bcc72049aa59a41cbf3ec8aaaa8994c62a227b (diff)
acpi: Make header #ifdefs consistent
Now that all ACPI header files are moved to src/include/acpi, this change updates the #ifdef to __ACPI_${FILENAME}__. BUG=b:155428745 Change-Id: Id24ee35bac318278871a26f98be7092604de01c0 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40931 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/include/acpi/acpigen_dsm.h')
-rw-r--r--src/include/acpi/acpigen_dsm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/acpi/acpigen_dsm.h b/src/include/acpi/acpigen_dsm.h
index c51c12b6e3..28b89746a7 100644
--- a/src/include/acpi/acpigen_dsm.h
+++ b/src/include/acpi/acpigen_dsm.h
@@ -1,8 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
-#ifndef __ARCH_ACPIGEN_DSM_H__
-#define __ARCH_ACPIGEN_DSM_H__
+#ifndef __ACPI_ACPIGEN_DSM_H__
+#define __ACPI_ACPIGEN_DSM_H__
#include <stdint.h>
@@ -12,4 +12,4 @@ struct dsm_i2c_hid_config {
void acpigen_write_dsm_i2c_hid(struct dsm_i2c_hid_config *config);
-#endif /* __ARCH_ACPIGEN_DSM_H__ */
+#endif /* __ACPI_ACPIGEN_DSM_H__ */