From: Colin Ian King Date: Tue, 16 Jan 2018 19:08:15 +0000 (+0000) Subject: scsi: mptsas: remove duplicated assignment to pointer head X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4774bc9dce37199d8fcaa1ac0c8baaac1175f4a3;p=linux.git scsi: mptsas: remove duplicated assignment to pointer head The pointer head is re-assigned the same value twice, so remove the second redundant assignment. Cleans up clang warning: drivers/message/fusion/mptsas.c:1161:20: warning: Value stored to 'head' during its initialization is never read Signed-off-by: Colin Ian King Signed-off-by: Martin K. Petersen --- diff --git a/drivers/message/fusion/mptsas.c b/drivers/message/fusion/mptsas.c index 345f6035599ea..439ee9c5f535a 100644 --- a/drivers/message/fusion/mptsas.c +++ b/drivers/message/fusion/mptsas.c @@ -1165,7 +1165,6 @@ mptsas_schedule_target_reset(void *iocp) * issue target reset to next device in the queue */ - head = &hd->target_reset_list; if (list_empty(head)) return;