From 1ba0da17c831eb0b02b863d3a5e2df993a3962aa Mon Sep 17 00:00:00 2001
From: Elyes HAOUAS <ehaouas@noos.fr>
Date: Sun, 9 Jun 2019 13:15:25 +0200
Subject: ec/kontron/kempld/kempld_i2c.c: Remove unneeded 'else'

'else' is not needed after a 'break' or 'return'.

Change-Id: I0843bebe48e4b91fc76c440ae33bbca838621de9
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33334
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Vlado Cibic
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
---
 src/ec/kontron/kempld/kempld_i2c.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

(limited to 'src/ec')

diff --git a/src/ec/kontron/kempld/kempld_i2c.c b/src/ec/kontron/kempld/kempld_i2c.c
index fdc0b50dfc..ab41097782 100644
--- a/src/ec/kontron/kempld/kempld_i2c.c
+++ b/src/ec/kontron/kempld/kempld_i2c.c
@@ -166,10 +166,9 @@ static int kempld_i2c_process(struct kempld_i2c_data *const i2c)
 			if (!(msg->flags & I2C_M_NOSTART)) {
 				i2c->state = STATE_ADDR;
 				return 0;
-			} else {
-				i2c->state = (msg->flags & I2C_M_RD)
-					? STATE_READ : STATE_WRITE;
 			}
+			i2c->state = (msg->flags & I2C_M_RD)
+				? STATE_READ : STATE_WRITE;
 		} else {
 			i2c->state = STATE_DONE;
 			kempld_write8(KEMPLD_I2C_CMD, I2C_CMD_STOP);
-- 
cgit v1.2.3