summaryrefslogtreecommitdiffstats
path: root/src/soc/mediatek/mt8183
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2020-07-29 17:39:21 -0700
committerPatrick Georgi <pgeorgi@google.com>2020-08-03 05:15:15 +0000
commit3e034b6e9aaddcca1996773b25d2ee88940d1144 (patch)
treeefb1a415a83fa68fed21d14f4f407ced7b1d545f /src/soc/mediatek/mt8183
parentc435d3daa71005d190373ee00a6491520b542eaa (diff)
downloadcoreboot-3e034b6e9aaddcca1996773b25d2ee88940d1144.tar.gz
coreboot-3e034b6e9aaddcca1996773b25d2ee88940d1144.tar.bz2
coreboot-3e034b6e9aaddcca1996773b25d2ee88940d1144.zip
Change all assert(0) to BUG()
I would like to make assertions evaluate at compile time where possible, but sometimes people used a literal assert(0) to force an assertion in a certain code path. We already have BUG() for that so let's just replace those instances with that. Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: I674e5f8ec7f5fe8b92b1c7c95d9f9202d422ce32 Reviewed-on: https://review.coreboot.org/c/coreboot/+/44047 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/mediatek/mt8183')
-rw-r--r--src/soc/mediatek/mt8183/mt6358.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/mediatek/mt8183/mt6358.c b/src/soc/mediatek/mt8183/mt6358.c
index 7b4febc56d04..6e6e43a6c4a1 100644
--- a/src/soc/mediatek/mt8183/mt6358.c
+++ b/src/soc/mediatek/mt8183/mt6358.c
@@ -831,7 +831,7 @@ void pmic_set_vsim2_cali(unsigned int vsim2_mv)
break;
default:
- assert(0);
+ BUG();
return;
};