RDMA/ocrdma: Fix a sparse warning
Fix the warning about the usage of plain integer as NULL pointer. Signed-off-by: Selvin Xavier <selvin.xavier@emulex.com> Signed-off-by: Roland Dreier <roland@purestorage.com>
This commit is contained in:
parent
b8806324ea
commit
1b09a0c290
|
@ -661,7 +661,7 @@ static void ocrdma_dispatch_ibevent(struct ocrdma_dev *dev,
|
||||||
{
|
{
|
||||||
struct ocrdma_qp *qp = NULL;
|
struct ocrdma_qp *qp = NULL;
|
||||||
struct ocrdma_cq *cq = NULL;
|
struct ocrdma_cq *cq = NULL;
|
||||||
struct ib_event ib_evt = { 0 };
|
struct ib_event ib_evt;
|
||||||
int cq_event = 0;
|
int cq_event = 0;
|
||||||
int qp_event = 1;
|
int qp_event = 1;
|
||||||
int srq_event = 0;
|
int srq_event = 0;
|
||||||
|
@ -674,6 +674,8 @@ static void ocrdma_dispatch_ibevent(struct ocrdma_dev *dev,
|
||||||
if (cqe->cqvalid_cqid & OCRDMA_AE_MCQE_CQVALID)
|
if (cqe->cqvalid_cqid & OCRDMA_AE_MCQE_CQVALID)
|
||||||
cq = dev->cq_tbl[cqe->cqvalid_cqid & OCRDMA_AE_MCQE_CQID_MASK];
|
cq = dev->cq_tbl[cqe->cqvalid_cqid & OCRDMA_AE_MCQE_CQID_MASK];
|
||||||
|
|
||||||
|
memset(&ib_evt, 0, sizeof(ib_evt));
|
||||||
|
|
||||||
ib_evt.device = &dev->ibdev;
|
ib_evt.device = &dev->ibdev;
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
|
Loading…
Reference in New Issue