diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-03-27 21:13:44 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-02 21:56:00 +0000 |
commit | 6237175ed5ef29a0e9b82cc7268ca424c5bb44ea (patch) | |
tree | 4f60ba095f7716baa777e7b93305c16418915d4a /src/northbridge/intel/haswell/raminit.h | |
parent | 9fa141898e49a844864cfc00f1ddc4c4e1981c2a (diff) |
nb/intel/haswell: Uniformize include guards
Remove leading and trailing underscores and change `RAMINIT_H` to be
more consistent with other headers.
Tested with BUILD_TIMELESS=1, Asrock B85M Pro4 remains identical.
Change-Id: Ie20fcaa0f9393eb0a34054eda53b9bade63cc0d2
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51890
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/intel/haswell/raminit.h')
-rw-r--r-- | src/northbridge/intel/haswell/raminit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/intel/haswell/raminit.h b/src/northbridge/intel/haswell/raminit.h index 5483229f3b..e151b46d8b 100644 --- a/src/northbridge/intel/haswell/raminit.h +++ b/src/northbridge/intel/haswell/raminit.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#ifndef RAMINIT_H -#define RAMINIT_H +#ifndef NORTHBRIDGE_INTEL_HASWELL_RAMINIT_H +#define NORTHBRIDGE_INTEL_HASWELL_RAMINIT_H #include <types.h> @@ -17,4 +17,4 @@ void mb_get_spd_map(struct spd_info *spdi); void perform_raminit(const int s3resume); -#endif /* RAMINIT_H */ +#endif /* NORTHBRIDGE_INTEL_HASWELL_RAMINIT_H */ |