'out' is just a 'return' call.
CC: Kevin Wolf <[email protected]>
CC: [email protected]
Signed-off-by: Daniel Henrique Barboza <[email protected]>
---
block/vxhs.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/block/vxhs.c b/block/vxhs.c
index d79fc97df6..e3db367918 100644
--- a/block/vxhs.c
+++ b/block/vxhs.c
@@ -96,7 +96,7 @@ static void vxhs_iio_callback(void *ctx, uint32_t opcode,
uint32_t error)
acb = ctx;
} else {
trace_vxhs_iio_callback(error);
- goto out;
+ return;
}
if (error) {
@@ -122,8 +122,6 @@ static void vxhs_iio_callback(void *ctx, uint32_t opcode,
uint32_t error)
}
break;
}
-out:
- return;
}
static QemuOptsList runtime_opts = {
--
2.24.1