summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2023-11-08 18:18:11 -0700
committerFelix Held <felix-coreboot@felixheld.de>2023-11-10 15:27:45 +0000
commit6fd7f112250f495e73e650bf07b2597274676cc8 (patch)
treea6f9bd51b83d158290230ffb3e7d4079130a48f0 /src/include
parentd205cf7e4ef6ebec49d45ec97f501f7de843ac94 (diff)
downloadcoreboot-6fd7f112250f495e73e650bf07b2597274676cc8.tar.gz
coreboot-6fd7f112250f495e73e650bf07b2597274676cc8.tar.bz2
coreboot-6fd7f112250f495e73e650bf07b2597274676cc8.zip
src: Remove unnecessary semicolons from the end of macros
Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: Ia005915a05d02725f77b52ccd7acebefaf25d058 Reviewed-on: https://review.coreboot.org/c/coreboot/+/78964 Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/cpu/intel/l2_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/cpu/intel/l2_cache.h b/src/include/cpu/intel/l2_cache.h
index a859dfaf1edc..7d256b4c06ed 100644
--- a/src/include/cpu/intel/l2_cache.h
+++ b/src/include/cpu/intel/l2_cache.h
@@ -44,7 +44,7 @@
#define BBLCR3_L2_SIZE_2M (0x08 << 13)
#define BBLCR3_L2_SIZE_4M (0x10 << 13)
/* bits [22:20] */
-#define BBLCR3_L2_PHYSICAL_RANGE (0x7 << 20);
+#define BBLCR3_L2_PHYSICAL_RANGE (0x7 << 20)
/* TODO: This bitmask does not agree with Intel's documentation.
* Get confirmation one way or another.
*/