[PATCH] ALSA: i2c: Use common error handling code in two functions

From: SF Markus Elfring
Date: Sat Nov 11 2017 - 11:18:07 EST


From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 11 Nov 2017 17:10:24 +0100

Add jump targets so that a bit of exception handling can be better reused
at the end of these functions.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx>
---
sound/i2c/i2c.c | 36 ++++++++++++++++++++----------------
1 file changed, 20 insertions(+), 16 deletions(-)

diff --git a/sound/i2c/i2c.c b/sound/i2c/i2c.c
index ef2a9afe9e19..9292aa60f3a2 100644
--- a/sound/i2c/i2c.c
+++ b/sound/i2c/i2c.c
@@ -282,20 +282,22 @@ static int snd_i2c_bit_sendbytes(struct snd_i2c_device *device,
return -EIO; /* not yet implemented */
snd_i2c_bit_start(bus);
err = snd_i2c_bit_sendbyte(bus, device->addr << 1);
- if (err < 0) {
- snd_i2c_bit_hw_stop(bus);
- return err;
- }
+ if (err < 0)
+ goto stop_bus;
+
while (count-- > 0) {
err = snd_i2c_bit_sendbyte(bus, *bytes++);
- if (err < 0) {
- snd_i2c_bit_hw_stop(bus);
- return err;
- }
+ if (err < 0)
+ goto stop_bus;
+
res++;
}
snd_i2c_bit_stop(bus);
return res;
+
+stop_bus:
+ snd_i2c_bit_hw_stop(bus);
+ return err;
}

static int snd_i2c_bit_readbytes(struct snd_i2c_device *device,
@@ -308,21 +310,23 @@ static int snd_i2c_bit_readbytes(struct snd_i2c_device *device,
return -EIO; /* not yet implemented */
snd_i2c_bit_start(bus);
err = snd_i2c_bit_sendbyte(bus, (device->addr << 1) | 1);
- if (err < 0) {
- snd_i2c_bit_hw_stop(bus);
- return err;
- }
+ if (err < 0)
+ goto stop_bus;
+
while (count-- > 0) {
err = snd_i2c_bit_readbyte(bus, count == 0);
- if (err < 0) {
- snd_i2c_bit_hw_stop(bus);
- return err;
- }
+ if (err < 0)
+ goto stop_bus;
+
*bytes++ = (unsigned char)err;
res++;
}
snd_i2c_bit_stop(bus);
return res;
+
+stop_bus:
+ snd_i2c_bit_hw_stop(bus);
+ return err;
}

static int snd_i2c_bit_probeaddr(struct snd_i2c_bus *bus, unsigned short addr)
--
2.15.0