Commit 4803bd06 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Martin K. Petersen

scsi: bfa: Remove some unused variables

'lp' is unused, it is just declared and zeroed

Remove it.

Link: https://lore.kernel.org/r/d10ccee35e35bf33d651f2e0163034d7c451520b.1618944442.git.christophe.jaillet@wanadoo.frSigned-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent b790a56d
...@@ -369,13 +369,10 @@ bfa_plog_fchdr(struct bfa_plog_s *plog, enum bfa_plog_mid mid, ...@@ -369,13 +369,10 @@ bfa_plog_fchdr(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
enum bfa_plog_eid event, enum bfa_plog_eid event,
u16 misc, struct fchs_s *fchdr) u16 misc, struct fchs_s *fchdr)
{ {
struct bfa_plog_rec_s lp;
u32 *tmp_int = (u32 *) fchdr; u32 *tmp_int = (u32 *) fchdr;
u32 ints[BFA_PL_INT_LOG_SZ]; u32 ints[BFA_PL_INT_LOG_SZ];
if (plog->plog_enabled) { if (plog->plog_enabled) {
memset(&lp, 0, sizeof(struct bfa_plog_rec_s));
ints[0] = tmp_int[0]; ints[0] = tmp_int[0];
ints[1] = tmp_int[1]; ints[1] = tmp_int[1];
ints[2] = tmp_int[4]; ints[2] = tmp_int[4];
...@@ -389,13 +386,10 @@ bfa_plog_fchdr_and_pl(struct bfa_plog_s *plog, enum bfa_plog_mid mid, ...@@ -389,13 +386,10 @@ bfa_plog_fchdr_and_pl(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
enum bfa_plog_eid event, u16 misc, struct fchs_s *fchdr, enum bfa_plog_eid event, u16 misc, struct fchs_s *fchdr,
u32 pld_w0) u32 pld_w0)
{ {
struct bfa_plog_rec_s lp;
u32 *tmp_int = (u32 *) fchdr; u32 *tmp_int = (u32 *) fchdr;
u32 ints[BFA_PL_INT_LOG_SZ]; u32 ints[BFA_PL_INT_LOG_SZ];
if (plog->plog_enabled) { if (plog->plog_enabled) {
memset(&lp, 0, sizeof(struct bfa_plog_rec_s));
ints[0] = tmp_int[0]; ints[0] = tmp_int[0];
ints[1] = tmp_int[1]; ints[1] = tmp_int[1];
ints[2] = tmp_int[4]; ints[2] = tmp_int[4];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment