From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuval Shaia Subject: Re: [patch v2] i40iw: fix some indenting in i40iw_sc_vsi_init() Date: Mon, 9 Jan 2017 22:40:26 +0200 Message-ID: <20170109204025.GA6731@yuval-lap> References: <20170109194127.GA42156@ssaleem-MOBL4.amr.corp.intel.com> <20170109201216.GA3055@mwanda> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20170109201216.GA3055@mwanda> Sender: linux-rdma-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Dan Carpenter Cc: Faisal Latif , Chien Tin Tung , Shiraz Saleem , Doug Ledford , Sean Hefty , Hal Rosenstock , linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-janitors-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-rdma@vger.kernel.org On Mon, Jan 09, 2017 at 11:12:16PM +0300, Dan Carpenter wrote: > The debug printk was indented more than it should have been and we > can remove an unnecessary line break. > > Signed-off-by: Dan Carpenter > --- > v2: I accidentally had a tab instead of a space. Also for this one: Reviewed-by: Yuval Shaia > > diff --git a/drivers/infiniband/hw/i40iw/i40iw_ctrl.c b/drivers/infiniband/hw/i40iw/i40iw_ctrl.c > index 98923a8cf86d..b9dc2c540946 100644 > --- a/drivers/infiniband/hw/i40iw/i40iw_ctrl.c > +++ b/drivers/infiniband/hw/i40iw/i40iw_ctrl.c > @@ -4498,9 +4498,9 @@ void i40iw_sc_vsi_init(struct i40iw_sc_vsi *vsi, struct i40iw_vsi_init_info *inf > i40iw_fill_qos_list(info->params->qs_handle_list); > > for (i = 0; i < I40IW_MAX_USER_PRIORITY; i++) { > - vsi->qos[i].qs_handle = > - info->params->qs_handle_list[i]; > - i40iw_debug(vsi->dev, I40IW_DEBUG_DCB, "qset[%d]: %d\n", i, vsi->qos[i].qs_handle); > + vsi->qos[i].qs_handle = info->params->qs_handle_list[i]; > + i40iw_debug(vsi->dev, I40IW_DEBUG_DCB, "qset[%d]: %d\n", i, > + vsi->qos[i].qs_handle); > spin_lock_init(&vsi->qos[i].lock); > INIT_LIST_HEAD(&vsi->qos[i].qplist); > } > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html