diff options
Diffstat (limited to 'drivers/infiniband/hw/hfi1/chip.c')
| -rw-r--r-- | drivers/infiniband/hw/hfi1/chip.c | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/infiniband/hw/hfi1/chip.c b/drivers/infiniband/hw/hfi1/chip.c index 90b672feed83..9dbb89e9f4af 100644 --- a/drivers/infiniband/hw/hfi1/chip.c +++ b/drivers/infiniband/hw/hfi1/chip.c @@ -12135,7 +12135,7 @@ void hfi1_rcvctrl(struct hfi1_devdata *dd, unsigned int op,  		set_intr_bits(dd, IS_RCVURGENT_START + rcd->ctxt,  			      IS_RCVURGENT_START + rcd->ctxt, false); -	hfi1_cdbg(RCVCTRL, "ctxt %d rcvctrl 0x%llx\n", ctxt, rcvctrl); +	hfi1_cdbg(RCVCTRL, "ctxt %d rcvctrl 0x%llx", ctxt, rcvctrl);  	write_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL, rcvctrl);  	/* work around sticky RcvCtxtStatus.BlockedRHQFull */ @@ -12205,10 +12205,10 @@ u32 hfi1_read_cntrs(struct hfi1_devdata *dd, char **namep, u64 **cntrp)  			hfi1_cdbg(CNTR, "reading %s", entry->name);  			if (entry->flags & CNTR_DISABLED) {  				/* Nothing */ -				hfi1_cdbg(CNTR, "\tDisabled\n"); +				hfi1_cdbg(CNTR, "\tDisabled");  			} else {  				if (entry->flags & CNTR_VL) { -					hfi1_cdbg(CNTR, "\tPer VL\n"); +					hfi1_cdbg(CNTR, "\tPer VL");  					for (j = 0; j < C_VL_COUNT; j++) {  						val = entry->rw_cntr(entry,  								  dd, j, @@ -12216,21 +12216,21 @@ u32 hfi1_read_cntrs(struct hfi1_devdata *dd, char **namep, u64 **cntrp)  								  0);  						hfi1_cdbg(  						   CNTR, -						   "\t\tRead 0x%llx for %d\n", +						   "\t\tRead 0x%llx for %d",  						   val, j);  						dd->cntrs[entry->offset + j] =  									    val;  					}  				} else if (entry->flags & CNTR_SDMA) {  					hfi1_cdbg(CNTR, -						  "\t Per SDMA Engine\n"); +						  "\t Per SDMA Engine");  					for (j = 0; j < chip_sdma_engines(dd);  					     j++) {  						val =  						entry->rw_cntr(entry, dd, j,  							       CNTR_MODE_R, 0);  						hfi1_cdbg(CNTR, -							  "\t\tRead 0x%llx for %d\n", +							  "\t\tRead 0x%llx for %d",  							  val, j);  						dd->cntrs[entry->offset + j] =  									val; @@ -12271,7 +12271,7 @@ u32 hfi1_read_portcntrs(struct hfi1_pportdata *ppd, char **namep, u64 **cntrp)  			hfi1_cdbg(CNTR, "reading %s", entry->name);  			if (entry->flags & CNTR_DISABLED) {  				/* Nothing */ -				hfi1_cdbg(CNTR, "\tDisabled\n"); +				hfi1_cdbg(CNTR, "\tDisabled");  				continue;  			} @@ -12513,7 +12513,7 @@ static void do_update_synth_timer(struct work_struct *work)  	hfi1_cdbg(  	    CNTR, -	    "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx\n", +	    "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx",  	    dd->unit, cur_tx, cur_rx, dd->last_tx, dd->last_rx);  	if ((cur_tx < dd->last_tx) || (cur_rx < dd->last_rx)) { @@ -12527,7 +12527,7 @@ static void do_update_synth_timer(struct work_struct *work)  	} else {  		total_flits = (cur_tx - dd->last_tx) + (cur_rx - dd->last_rx);  		hfi1_cdbg(CNTR, -			  "[%d] total flits 0x%llx limit 0x%llx\n", dd->unit, +			  "[%d] total flits 0x%llx limit 0x%llx", dd->unit,  			  total_flits, (u64)CNTR_32BIT_MAX);  		if (total_flits >= CNTR_32BIT_MAX) {  			hfi1_cdbg(CNTR, "[%d] 32bit limit hit, updating",  |