diff options
author | Michael Walle <michael@walle.cc> | 2022-05-30 23:02:10 +0200 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2022-06-20 15:52:45 +0800 |
commit | 7bc683afda5ede82cfcace77cecab1891d6d93ff (patch) | |
tree | c0994366667aa4acdd55b8e5054d83a0560eb8a2 /include/configs | |
parent | 1029249b0065b32ae74e3fa7cd7d0f27d1b80efd (diff) | |
download | u-boot-7bc683afda5ede82cfcace77cecab1891d6d93ff.tar.gz |
board: sl28: rename include guard macro
Avoid name clashes with an include file on board level.
Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/kontron_sl28.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/kontron_sl28.h b/include/configs/kontron_sl28.h index 6beb0bdf3ed..2373abf3e31 100644 --- a/include/configs/kontron_sl28.h +++ b/include/configs/kontron_sl28.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0+ */ -#ifndef __SL28_H -#define __SL28_H +#ifndef __SL28_CONFIG_H +#define __SL28_CONFIG_H #include <asm/arch/stream_id_lsch3.h> #include <asm/arch/config.h> @@ -80,4 +80,4 @@ ENV_MEM_LAYOUT_SETTINGS \ BOOTENV -#endif /* __SL28_H */ +#endif /* __SL28_CONFIG_H */ |