From: Samuel Holland Date: Sun, 22 Aug 2021 23:18:03 +0000 (-0500) Subject: include: axp_pmic: Add missing header guard definition X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=5b4afbd40c9bc1cac6705e27e9ec0683622ca86a;p=u-boot.git 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 Reviewed-by: Andre Przywara Signed-off-by: Andre Przywara --- 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