Message ID | 20210804133241.113509-1-colin.king@canonical.com |
---|---|
State | New |
Headers | show |
Series | scsi: ufs: ufshpb: Remove redundant initialization of variable lba | expand |
Colin, > The variable lba is being initialized with a value that is never read, > it is being updated later on. The assignment is redundant and can be > removed. Applied to 5.15/scsi-staging, thanks! -- Martin K. Petersen Oracle Linux Engineering
On Wed, 4 Aug 2021 14:32:41 +0100, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > The variable lba is being initialized with a value that is never > read, it is being updated later on. The assignment is redundant and > can be removed. > > > [...] Applied to 5.15/scsi-queue, thanks! [1/1] scsi: ufs: ufshpb: Remove redundant initialization of variable lba https://git.kernel.org/mkp/scsi/c/102851fc9a0d -- Martin K. Petersen Oracle Linux Engineering
diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c index 40d371f6e147..e3cd033b6885 100644 --- a/drivers/scsi/ufs/ufshcd.c +++ b/drivers/scsi/ufs/ufshcd.c @@ -371,7 +371,7 @@ static void ufshcd_add_uic_command_trace(struct ufs_hba *hba, static void ufshcd_add_command_trace(struct ufs_hba *hba, unsigned int tag, enum ufs_trace_str_t str_t) { - u64 lba = -1; + u64 lba; u8 opcode = 0, group_id = 0; u32 intr, doorbell; struct ufshcd_lrb *lrbp = &hba->lrb[tag];