summaryrefslogtreecommitdiff
path: root/include/axp_pmic.h
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2021-08-23 02:18:03 +0300
committerAndre Przywara <andre.przywara@arm.com>2021-10-25 16:50:07 +0300
commit5b4afbd40c9bc1cac6705e27e9ec0683622ca86a (patch)
tree957cdbc02257ee91da28e52a3b7acf0cce11b279 /include/axp_pmic.h
parenta13fa74a8e82d7c1d6c4c4945ae0dc4870a222c9 (diff)
downloadu-boot-5b4afbd40c9bc1cac6705e27e9ec0683622ca86a.tar.xz
include: axp_pmic: Add missing header guard definition
This header attempted to avoid multiple inclusion using a header guard. But the preprocessor symbol was never defined, so the guard had no effect. Fix this by defining the symbol. Signed-off-by: Samuel Holland <samuel@sholland.org> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'include/axp_pmic.h')
-rw-r--r--include/axp_pmic.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/axp_pmic.h b/include/axp_pmic.h
index 46a017d2ef..2eab18937b 100644
--- a/include/axp_pmic.h
+++ b/include/axp_pmic.h
@@ -5,6 +5,7 @@
* X-Powers AX Power Management IC support header
*/
#ifndef _AXP_PMIC_H_
+#define _AXP_PMIC_H_
#include <stdbool.h>