diff options
| author | Andre Przywara <[email protected]> | 2023-05-15 14:52:12 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-05-31 12:17:00 -0400 |
| commit | db93db92b4a2244e0ef35bf1bf3fc38c1da174f1 (patch) | |
| tree | 9cb84a41442ec3481281190e5276ed4b83e1f411 | |
| parent | 30cb65748359915a7704be463cb2bfa838bb8877 (diff) | |
freescale: vsc3316_3308: fix header inclusion guard
It seems like the header inclusion guard for some Freescale crosspoint
switch 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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
| -rw-r--r-- | board/freescale/common/vsc3316_3308.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/common/vsc3316_3308.h b/board/freescale/common/vsc3316_3308.h index 49a684f9f49..8d343ba4d65 100644 --- a/board/freescale/common/vsc3316_3308.h +++ b/board/freescale/common/vsc3316_3308.h @@ -4,7 +4,7 @@ */ #ifndef __VSC_CROSSBAR_H_ -#define __VSC_CROSSBAR_H 1_ +#define __VSC_CROSSBAR_H_ #include <common.h> #include <i2c.h> |
