diff options
author | Martin Roth <martinroth@google.com> | 2016-01-31 10:37:22 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-02-02 01:44:12 +0100 |
commit | 1010868f87db1e449a13833be4991cef9cf8b0fc (patch) | |
tree | 3b17a23eac37b26c924ef666ccdb6e932703f151 /src/cpu/amd/car | |
parent | 9ab9c33d7d97ebe1d8e5d25eb4b646f310b5f188 (diff) |
src/: Fix Kcofig symbols missing CONFIG_ prefix
- Add CONFIG_ prefix to two symbols.
- Remove the use of the third symbol as it will never be matched.
Change-Id: Ifa7f6884001cb05fb8397f193c4b08a0161f498c
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/13539
Tested-by: build bot (Jenkins)
Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/amd/car')
-rw-r--r-- | src/cpu/amd/car/disable_cache_as_ram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/car/disable_cache_as_ram.c b/src/cpu/amd/car/disable_cache_as_ram.c index e8d5af8047..1eb3dd756f 100644 --- a/src/cpu/amd/car/disable_cache_as_ram.c +++ b/src/cpu/amd/car/disable_cache_as_ram.c @@ -72,7 +72,7 @@ static inline __attribute__((always_inline)) void disable_cache_as_ram(uint8_t s family = amd_fam1x_cpu_family(); -#if IS_ENABLED(CPU_AMD_MODEL_10XXX) +#if IS_ENABLED(CONFIG_CPU_AMD_MODEL_10XXX) if (family >= 0x6f) { /* Family 15h or later */ |