diff options
author | Andre Przywara <andre.przywara@arm.com> | 2023-05-15 14:52:13 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-31 12:31:47 -0400 |
commit | 081b160aa399f78e2bee54e4b59bd62862b22b68 (patch) | |
tree | 4ab1be6a29d44eb40d02710646a47e9fbe468e37 | |
parent | db93db92b4a2244e0ef35bf1bf3fc38c1da174f1 (diff) |
exynos: fix header inclusion guard
It seems like the header inclusion guard for the Exynos pinctrl header
was misspelled.
Make the preprocessor symbol 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>
-rw-r--r-- | drivers/pinctrl/exynos/pinctrl-exynos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/exynos/pinctrl-exynos.h b/drivers/pinctrl/exynos/pinctrl-exynos.h index a7788b76d90..cbc5174b48c 100644 --- a/drivers/pinctrl/exynos/pinctrl-exynos.h +++ b/drivers/pinctrl/exynos/pinctrl-exynos.h @@ -6,7 +6,7 @@ */ #ifndef __PINCTRL_EXYNOS_H_ -#define __PINCTRL_EXYNOS__H_ +#define __PINCTRL_EXYNOS_H_ #define PIN_CON 0x00 /* Offset of pin function register */ #define PIN_DAT 0x04 /* Offset of pin data register */ |