diff options
author | Martin Roth <martinroth@google.com> | 2016-01-11 12:47:30 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-01-18 04:07:53 +0100 |
commit | fd277d8f9406c746ed929a042e01afd31022b605 (patch) | |
tree | 1c423c912a6afc6ff4373db2fc8fde2009238570 /src/soc/nvidia | |
parent | a656362402ae50a767fcff091087df3946ebc7af (diff) |
header files: Fix guard name comments to match guard names
This just updates existing guard name comments on the header files
to match the actual #define name.
As a side effect, if there was no newline at the end of these files,
one was added.
Change-Id: Ia2cd8057f2b1ceb0fa1b946e85e0c16a327a04d7
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12900
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/soc/nvidia')
-rw-r--r-- | src/soc/nvidia/tegra132/include/soc/id.h | 2 | ||||
-rw-r--r-- | src/soc/nvidia/tegra210/include/soc/id.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/nvidia/tegra132/include/soc/id.h b/src/soc/nvidia/tegra132/include/soc/id.h index 198e3c4fdd..907285614c 100644 --- a/src/soc/nvidia/tegra132/include/soc/id.h +++ b/src/soc/nvidia/tegra132/include/soc/id.h @@ -28,4 +28,4 @@ static inline int context_avp(void) return read32(uptag) == avp_id; } -#endif /* define __SOC_NVIDIA_TEGRA132_INCLUDE_SOC_ID_H__ */ +#endif /* __SOC_NVIDIA_TEGRA132_INCLUDE_SOC_ID_H__ */ diff --git a/src/soc/nvidia/tegra210/include/soc/id.h b/src/soc/nvidia/tegra210/include/soc/id.h index 5e487d2d6b..0903ba98ef 100644 --- a/src/soc/nvidia/tegra210/include/soc/id.h +++ b/src/soc/nvidia/tegra210/include/soc/id.h @@ -28,4 +28,4 @@ static inline int context_avp(void) return read32(uptag) == avp_id; } -#endif /* define __SOC_NVIDIA_TEGRA210_INCLUDE_SOC_ID_H__ */ +#endif /* __SOC_NVIDIA_TEGRA210_INCLUDE_SOC_ID_H__ */ |