@@ -12135,7 +12135,7 @@ void hfi1_rcvctrl(struct hfi1_devdata *dd, unsigned int op,
1213512135 set_intr_bits (dd , IS_RCVURGENT_START + rcd -> ctxt ,
1213612136 IS_RCVURGENT_START + rcd -> ctxt , false);
1213712137
12138- hfi1_cdbg (RCVCTRL , "ctxt %d rcvctrl 0x%llx\n " , ctxt , rcvctrl );
12138+ hfi1_cdbg (RCVCTRL , "ctxt %d rcvctrl 0x%llx" , ctxt , rcvctrl );
1213912139 write_kctxt_csr (dd , ctxt , RCV_CTXT_CTRL , rcvctrl );
1214012140
1214112141 /* work around sticky RcvCtxtStatus.BlockedRHQFull */
@@ -12205,32 +12205,32 @@ u32 hfi1_read_cntrs(struct hfi1_devdata *dd, char **namep, u64 **cntrp)
1220512205 hfi1_cdbg (CNTR , "reading %s" , entry -> name );
1220612206 if (entry -> flags & CNTR_DISABLED ) {
1220712207 /* Nothing */
12208- hfi1_cdbg (CNTR , "\tDisabled\n " );
12208+ hfi1_cdbg (CNTR , "\tDisabled" );
1220912209 } else {
1221012210 if (entry -> flags & CNTR_VL ) {
12211- hfi1_cdbg (CNTR , "\tPer VL\n " );
12211+ hfi1_cdbg (CNTR , "\tPer VL" );
1221212212 for (j = 0 ; j < C_VL_COUNT ; j ++ ) {
1221312213 val = entry -> rw_cntr (entry ,
1221412214 dd , j ,
1221512215 CNTR_MODE_R ,
1221612216 0 );
1221712217 hfi1_cdbg (
1221812218 CNTR ,
12219- "\t\tRead 0x%llx for %d\n " ,
12219+ "\t\tRead 0x%llx for %d" ,
1222012220 val , j );
1222112221 dd -> cntrs [entry -> offset + j ] =
1222212222 val ;
1222312223 }
1222412224 } else if (entry -> flags & CNTR_SDMA ) {
1222512225 hfi1_cdbg (CNTR ,
12226- "\t Per SDMA Engine\n " );
12226+ "\t Per SDMA Engine" );
1222712227 for (j = 0 ; j < chip_sdma_engines (dd );
1222812228 j ++ ) {
1222912229 val =
1223012230 entry -> rw_cntr (entry , dd , j ,
1223112231 CNTR_MODE_R , 0 );
1223212232 hfi1_cdbg (CNTR ,
12233- "\t\tRead 0x%llx for %d\n " ,
12233+ "\t\tRead 0x%llx for %d" ,
1223412234 val , j );
1223512235 dd -> cntrs [entry -> offset + j ] =
1223612236 val ;
@@ -12271,7 +12271,7 @@ u32 hfi1_read_portcntrs(struct hfi1_pportdata *ppd, char **namep, u64 **cntrp)
1227112271 hfi1_cdbg (CNTR , "reading %s" , entry -> name );
1227212272 if (entry -> flags & CNTR_DISABLED ) {
1227312273 /* Nothing */
12274- hfi1_cdbg (CNTR , "\tDisabled\n " );
12274+ hfi1_cdbg (CNTR , "\tDisabled" );
1227512275 continue ;
1227612276 }
1227712277
@@ -12513,7 +12513,7 @@ static void do_update_synth_timer(struct work_struct *work)
1251312513
1251412514 hfi1_cdbg (
1251512515 CNTR ,
12516- "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx\n " ,
12516+ "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx" ,
1251712517 dd -> unit , cur_tx , cur_rx , dd -> last_tx , dd -> last_rx );
1251812518
1251912519 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)
1252712527 } else {
1252812528 total_flits = (cur_tx - dd -> last_tx ) + (cur_rx - dd -> last_rx );
1252912529 hfi1_cdbg (CNTR ,
12530- "[%d] total flits 0x%llx limit 0x%llx\n " , dd -> unit ,
12530+ "[%d] total flits 0x%llx limit 0x%llx" , dd -> unit ,
1253112531 total_flits , (u64 )CNTR_32BIT_MAX );
1253212532 if (total_flits >= CNTR_32BIT_MAX ) {
1253312533 hfi1_cdbg (CNTR , "[%d] 32bit limit hit, updating" ,
0 commit comments