On Tuesday, July 07/31/18, 2018 at 08:51:30 -0700, Bart Van Assche wrote: > This patch avoids that sparse reports the following warning: > > drivers/infiniband/hw/cxgb4/qp.c:2269:34: warning: Using plain integer as NULL pointer > > Signed-off-by: Bart Van Assche <bart.vanassche@xxxxxxx> > Acked-by: Steve Wise <swise@xxxxxxxxxxxxxxxxxxxxx> > Cc: Raju Rangoju <rajur@xxxxxxxxxxx> > --- > drivers/infiniband/hw/cxgb4/qp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/infiniband/hw/cxgb4/qp.c b/drivers/infiniband/hw/cxgb4/qp.c > index 62e2c0d899f5..c26086c76f0b 100644 > --- a/drivers/infiniband/hw/cxgb4/qp.c > +++ b/drivers/infiniband/hw/cxgb4/qp.c > @@ -2266,7 +2266,7 @@ struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn) > > void c4iw_dispatch_srq_limit_reached_event(struct c4iw_srq *srq) > { > - struct ib_event event = {0}; > + struct ib_event event = {}; > > event.device = &srq->rhp->ibdev; > event.element.srq = &srq->ibsrq; Thanks Bart. Acked-by: Raju Rangoju <rajur@xxxxxxxxxxx> > -- > 2.18.0 > -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html