Commit f3ebe237 authored by Matthias Beyer's avatar Matthias Beyer Committed by Greg Kroah-Hartman
Browse files

Staging: bcm: nvm.c: Removed indentation level by using continue statement

parent 093300f4
Loading
Loading
Loading
Loading
+13 −12
Original line number Diff line number Diff line
@@ -1049,7 +1049,9 @@ static int bulk_read_complete_sector(struct bcm_mini_adapter *ad,
						     offset + i,
						     MAX_RW_SIZE);

		if (bulk_read_stat == STATUS_SUCCESS) {
		if (bulk_read_stat != STATUS_SUCCESS)
			continue;

		if (ad->ulFlashWriteSize == 1) {
			for (j = 0; j < 16; j++) {
				if (read_bk[j] != tmpbuff[i+j]) {
@@ -1066,7 +1068,6 @@ static int bulk_read_complete_sector(struct bcm_mini_adapter *ad,
			}
		}
	}
	}

	return STATUS_SUCCESS;
}