[PATCH 1/2] drm/nouveau: Fix missing elses in g94_i2c_aux_xfer

From: Lyude Paul
Date: Thu Jul 25 2019 - 15:40:19 EST


This looks rather unintentional!

Signed-off-by: Lyude Paul <lyude@xxxxxxxxxx>
---
drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c
index c8ab1b5741a3..9bc9eac08789 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c
@@ -138,9 +138,9 @@ g94_i2c_aux_xfer(struct nvkm_i2c_aux *obj, bool retry,
if ((stat & 0x000f0000) == 0x00080000 ||
(stat & 0x000f0000) == 0x00020000)
ret = 1;
- if ((stat & 0x00000100))
+ else if ((stat & 0x00000100))
ret = -ETIMEDOUT;
- if ((stat & 0x00000e00))
+ else if ((stat & 0x00000e00))
ret = -EIO;

AUX_TRACE(&aux->base, "%02d %08x %08x", retries, ctrl, stat);
--
2.21.0