scsi: isci: remove redundant initialization to 'bit'
authorColin Ian King <colin.king@canonical.com>
Tue, 6 Feb 2018 14:12:36 +0000 (14:12 +0000)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 14 Feb 2018 02:37:06 +0000 (21:37 -0500)
commit2976fbb6a7aff04076d13d2a37e4b8dbe0d6fd4c
tree03d7d00e3b64da08191a50590eb6daf95d94e85b
parent230816d48ed0213f25a1835f5e0e1bbef96bb896
scsi: isci: remove redundant initialization to 'bit'

Variable bit is initialized with a value that is never read and is being
updated immediately after the initialization, hence the initialization
is redundant and can be removed.

Cleans up clang warning:
drivers/scsi/isci/host.c:2769:8: warning: Value stored to 'bit' during
its initialization is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/isci/host.c