From 9d84795fc5dcd769cc8a1efedc783863e88cb25d Mon Sep 17 00:00:00 2001 From: Thomas Skibo Date: Sun, 15 Aug 2021 16:04:03 -0700 Subject: [PATCH] riscv: Add missing sentinel in ocores_i2c.c The ocores_i2c.c driver is missing a sentinel at the end of the compatible strings list. This causes the "dm compat" command to spew garbage. Signed-off-by: Thomas Skibo Reviewed-by: Leo Yu-Chi Liang --- drivers/i2c/ocores_i2c.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/i2c/ocores_i2c.c b/drivers/i2c/ocores_i2c.c index 088ba9a..f129ec3 100644 --- a/drivers/i2c/ocores_i2c.c +++ b/drivers/i2c/ocores_i2c.c @@ -626,6 +626,7 @@ static const struct udevice_id ocores_i2c_ids[] = { { .compatible = "aeroflexgaisler,i2cmst", .data = TYPE_GRLIB }, { .compatible = "sifive,fu540-c000-i2c" }, { .compatible = "sifive,i2c0" }, +{ } }; U_BOOT_DRIVER(i2c_ocores) = { -- 2.7.4