Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31902
b: refs/heads/master
c: 041976f
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and James Bottomley committed Jun 26, 2006
1 parent cca41ee commit ffa515f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 76c1534e0bd78e9a7662edcf5c994bac63d939fd
refs/heads/master: 041976fb6ae851cd18d96584a5d6361b564c9974
6 changes: 3 additions & 3 deletions trunk/drivers/scsi/lpfc/lpfc_els.c
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ lpfc_issue_els_plogi(struct lpfc_hba * phba, uint32_t did, uint8_t retry)
pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */

cmdsize = (sizeof (uint32_t) + sizeof (struct serv_parm));
elsiocb = lpfc_prep_els_iocb(phba, 1, cmdsize, retry, 0, did,
elsiocb = lpfc_prep_els_iocb(phba, 1, cmdsize, retry, NULL, did,
ELS_CMD_PLOGI);
if (!elsiocb)
return 1;
Expand Down Expand Up @@ -2791,8 +2791,8 @@ lpfc_els_rsp_rps_acc(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmb)

ndlp = (struct lpfc_nodelist *) pmb->context2;
xri = (uint16_t) ((unsigned long)(pmb->context1));
pmb->context1 = 0;
pmb->context2 = 0;
pmb->context1 = NULL;
pmb->context2 = NULL;

if (mb->mbxStatus) {
mempool_free( pmb, phba->mbox_mem_pool);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/scsi/lpfc/lpfc_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -939,12 +939,12 @@ lpfc_get_hba_model_desc(struct lpfc_hba * phba, uint8_t * mdp, uint8_t * descp)
"10-port ", "PCIe"};
break;
default:
m = (typeof(m)){ 0 };
m = (typeof(m)){ NULL };
break;
}
break;
default:
m = (typeof(m)){ 0 };
m = (typeof(m)){ NULL };
break;
}

Expand Down

0 comments on commit ffa515f

Please sign in to comment.