Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d4208c1 authored by Miguel Bernal Marin's avatar Miguel Bernal Marin Committed by Martin K. Petersen
Browse files

scsi: storvsc: remove return at end of void function



storvsc_on_channel_callback is a void function and the return
statement at the end is not useful.

Found with checkpatch.

Signed-off-by: default avatarMiguel Bernal Marin <miguel.bernal.marin@linux.intel.com>
Reviewed-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent e0408528
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1191,8 +1191,6 @@ static void storvsc_on_channel_callback(void *context)
			break;
		}
	} while (1);

	return;
}

static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size,