diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-07-07 18:27:30 +0200 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2020-07-09 12:46:35 +0000 |
commit | b5320b2dc1a0c2f710929f4a0aa17529b973b62f (patch) | |
tree | 09b906b18ae6a09f79c7a9533b4b331abbfc6f71 /src/soc/intel/baytrail/include | |
parent | 8104effa0dc25bac4693e8d76c1e10039dd47bad (diff) | |
download | coreboot-b5320b2dc1a0c2f710929f4a0aa17529b973b62f.tar.xz |
soc/intel/baytrail: Rename "pmc.h" to "pm.h"
This reduces the differences between Bay Trail and Braswell.
Tested with BUILD_TIMELESS=1, Google Ninja remains identical.
Change-Id: I3d4c1285bdc4b061383b7bb6262f69671166b9c4
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43185
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Diffstat (limited to 'src/soc/intel/baytrail/include')
-rw-r--r-- | src/soc/intel/baytrail/include/soc/pm.h (renamed from src/soc/intel/baytrail/include/soc/pmc.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/baytrail/include/soc/pmc.h b/src/soc/intel/baytrail/include/soc/pm.h index 8b18589f16..0481159416 100644 --- a/src/soc/intel/baytrail/include/soc/pmc.h +++ b/src/soc/intel/baytrail/include/soc/pm.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#ifndef _BAYTRAIL_PMC_H_ -#define _BAYTRAIL_PMC_H_ +#ifndef _BAYTRAIL_PM_H_ +#define _BAYTRAIL_PM_H_ #include <acpi/acpi.h> @@ -275,4 +275,4 @@ int rtc_failure(void); #endif /* !defined(__ASSEMBLER__) && !defined(__ACPI__) */ -#endif /* _BAYTRAIL_PMC_H_ */ +#endif /* _BAYTRAIL_PM_H_ */ |