Commit dd912f43 authored by Colin Ian King's avatar Colin Ian King Committed by Marcel Holtmann
Browse files

Bluetooth: btmrvl: remove redundant continue statement



The continue statement in the for-loop has no effect,
remove it.

Addresses-Coverity: ("Continue has no effect")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent c9ed0a70
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -1461,9 +1461,7 @@ static void btmrvl_sdio_coredump(struct device *dev)
					BT_ERR("Allocated buffer not enough");
					BT_ERR("Allocated buffer not enough");
			}
			}


			if (stat != RDWR_STATUS_DONE) {
			if (stat == RDWR_STATUS_DONE) {
				continue;
			} else {
				BT_INFO("%s done: size=0x%tx",
				BT_INFO("%s done: size=0x%tx",
					entry->mem_name,
					entry->mem_name,
					dbg_ptr - entry->mem_ptr);
					dbg_ptr - entry->mem_ptr);