summaryrefslogtreecommitdiff
path: root/src/mainboard/emulation/qemu-q35
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2023-12-08 10:52:34 +0100
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2023-12-20 08:34:50 +0000
commitdf98b8168fdf302402a8a83a6a6da020cf0ebaa9 (patch)
treede29d175bbfcebe7eb420072fab04077146de45a /src/mainboard/emulation/qemu-q35
parent6ff711c48faa64024d031ed7753c157837347d24 (diff)
mainboard: Use same indent levels for switch/case
Use same indent levels for switch/case in order to comply with the linter. Change-Id: I602cf024ec84b15b783d36014c725826f9d6595e Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79418 Reviewed-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-by: Eric Lai <ericllai@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/emulation/qemu-q35')
-rw-r--r--src/mainboard/emulation/qemu-q35/memmap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/emulation/qemu-q35/memmap.c b/src/mainboard/emulation/qemu-q35/memmap.c
index 3f3ced23f8..150ea113bd 100644
--- a/src/mainboard/emulation/qemu-q35/memmap.c
+++ b/src/mainboard/emulation/qemu-q35/memmap.c
@@ -15,10 +15,10 @@
static uint32_t encode_pciexbar_length(void)
{
switch (CONFIG_ECAM_MMCONF_BUS_NUMBER) {
- case 256: return 0 << 1;
- case 128: return 1 << 1;
- case 64: return 2 << 1;
- default: return dead_code_t(uint32_t);
+ case 256: return 0 << 1;
+ case 128: return 1 << 1;
+ case 64: return 2 << 1;
+ default: return dead_code_t(uint32_t);
}
}