exynos: fix header inclusion guard
authorAndre Przywara <andre.przywara@arm.com>
Mon, 15 May 2023 13:52:13 +0000 (14:52 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 31 May 2023 16:31:47 +0000 (12:31 -0400)
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>
drivers/pinctrl/exynos/pinctrl-exynos.h

index a7788b7..cbc5174 100644 (file)
@@ -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 */