From: Monam Agarwal Date: Wed, 26 Feb 2014 05:27:14 +0000 (+0530) Subject: Staging: sep: Fix line length over 80 characters in sep_main.c X-Git-Tag: v3.15-rc1~139^2~834 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=e26b0da125b475bbfbc4e6e6936cfd2795e5aa3b;p=~emulex%2Finfiniband.git Staging: sep: Fix line length over 80 characters in sep_main.c This patch fixes the following checkpatch.pl warning in sep_main.c WARNING: line length over 80 characters Signed-off-by: Monam Agarwal Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/sep/sep_main.c b/drivers/staging/sep/sep_main.c index 7faf8ffed9b..cbfc0cffb1d 100644 --- a/drivers/staging/sep/sep_main.c +++ b/drivers/staging/sep/sep_main.c @@ -2872,7 +2872,8 @@ static int sep_free_dma_tables_and_dcb(struct sep_device *sep, bool isapplet, * Go over each DCB and see if * tail pointer must be updated */ - for (i = 0; i < (*dma_ctx)->nr_dcb_creat; i++, dcb_table_ptr++) { + for (i = 0; i < (*dma_ctx)->nr_dcb_creat; + i++, dcb_table_ptr++) { if (dcb_table_ptr->out_vr_tail_pt) { pt_hold = (unsigned long)dcb_table_ptr-> out_vr_tail_pt;