diff options
author | Andre Przywara <andre.przywara@arm.com> | 2023-05-15 14:52:10 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-31 10:11:46 -0400 |
commit | 4ee992f7cf907d269d20a26d90513ef67b371dd5 (patch) | |
tree | a48571e508fbbe95bb85307c30578c9cb5974063 /include/imx_sip.h | |
parent | 41e289bb1f6032694900afad017320d26f411066 (diff) |
imx: fix header inclusion guards
It seems like the header inclusion guards for some IMX related headers
were misspelled or got out of sync.
Make the preprocessor symbols for the #ifndef and #define lines the
same, so that the double inclusion protection works as expected.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/imx_sip.h')
-rw-r--r-- | include/imx_sip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/imx_sip.h b/include/imx_sip.h index 1b873f231b..ebbb3a16d7 100644 --- a/include/imx_sip.h +++ b/include/imx_sip.h @@ -4,7 +4,7 @@ */ #ifndef _IMX_SIP_H__ -#define _IMX_SIP_H_ +#define _IMX_SIP_H__ #define IMX_SIP_GPC 0xC2000000 #define IMX_SIP_GPC_PM_DOMAIN 0x03 |