From: Stanley Chu Date: Wed, 18 Mar 2020 10:40:10 +0000 (+0800) Subject: scsi: ufs: fix uninitialized tx_lanes in ufshcd_disable_tx_lcc() X-Git-Tag: libata-5.7-2020-04-09~55^2~19 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ba0320fbb809de541a9b396e153171151607bac8;p=linux-block.git scsi: ufs: fix uninitialized tx_lanes in ufshcd_disable_tx_lcc() In ufshcd_disable_tx_lcc(), if ufshcd_dme_get() or ufshcd_dme_peer_get() get fail, uninitialized variable "tx_lanes" may be used as unexpected lane ID for DME configuration. Fix this issue by initializing "tx_lanes". Link: https://lore.kernel.org/r/20200318104016.28049-2-stanley.chu@mediatek.com Reviewed-by: Avri Altman Reviewed-by: Can Guo Reviewed-by: Asutosh Das Signed-off-by: Stanley Chu Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c index 2a2a63b68a67..597b704dea57 100644 --- a/drivers/scsi/ufs/ufshcd.c +++ b/drivers/scsi/ufs/ufshcd.c @@ -4249,7 +4249,7 @@ EXPORT_SYMBOL_GPL(ufshcd_hba_enable); static int ufshcd_disable_tx_lcc(struct ufs_hba *hba, bool peer) { - int tx_lanes, i, err = 0; + int tx_lanes = 0, i, err = 0; if (!peer) ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),