[coreboot-gerrit] Patch set updated for coreboot: soc/mediatek/mt8173/spi.c: Change assert to if statement

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Wed Nov 23 23:13:56 CET 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17484

-gerrit

commit 9f6b66679c7a21bf52feec4a43132d082f60363e
Author: Martin Roth <martinroth at google.com>
Date:   Fri Nov 18 09:54:23 2016 -0700

    soc/mediatek/mt8173/spi.c: Change assert to if statement
    
    Asserts are only fatal if CONFIG_FATAL_ASSERTS is enabled in Kconfig.
    By default this is disabled, so the assert is generally just a printf.
    
    Die if someone decides to pass in an invalid bus number for some reason.
    
    Addresses coverity issue 1349858 - Out-of-bounds read
    
    Signed-off-by: Martin Roth <martinroth at google.com>
    Change-Id: I9d79bc336cbbfde31f655cfd271f101e7a90ab1b
---
 src/soc/mediatek/mt8173/spi.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/soc/mediatek/mt8173/spi.c b/src/soc/mediatek/mt8173/spi.c
index c35b1fc..b472291 100644
--- a/src/soc/mediatek/mt8173/spi.c
+++ b/src/soc/mediatek/mt8173/spi.c
@@ -80,8 +80,11 @@ void mtk_spi_init(unsigned int bus, unsigned int pad_select,
 		  unsigned int speed_hz)
 {
 	u32 div, sck_ticks, cs_ticks, reg_val;
-	/* mtk spi HW just support bus 0 */
-	assert(bus == 0);
+
+	/* mtk spi HW just supports bus 0 */
+	if (bus != 0)
+		die("Error: Only SPI bus 0 is supported.\n");
+
 	struct mtk_spi_bus *slave = &spi_bus[bus];
 	struct mtk_spi_regs *regs = slave->regs;
 



More information about the coreboot-gerrit mailing list