@@ -2356,7 +2356,7 @@ static bool vtd_process_iotlb_desc(IntelIOMMUState *s, VTDInvDesc *inv_desc)
2356
2356
if ((inv_desc -> lo & VTD_INV_DESC_IOTLB_RSVD_LO ) ||
2357
2357
(inv_desc -> hi & VTD_INV_DESC_IOTLB_RSVD_HI )) {
2358
2358
error_report_once ("%s: invalid iotlb inv desc: hi=0x%" PRIx64
2359
- ", lo=0x%" PRIx64 " (reserved bits unzero)\n " ,
2359
+ ", lo=0x%" PRIx64 " (reserved bits unzero)" ,
2360
2360
__func__ , inv_desc -> hi , inv_desc -> lo );
2361
2361
return false;
2362
2362
}
@@ -2377,7 +2377,7 @@ static bool vtd_process_iotlb_desc(IntelIOMMUState *s, VTDInvDesc *inv_desc)
2377
2377
am = VTD_INV_DESC_IOTLB_AM (inv_desc -> hi );
2378
2378
if (am > VTD_MAMV ) {
2379
2379
error_report_once ("%s: invalid iotlb inv desc: hi=0x%" PRIx64
2380
- ", lo=0x%" PRIx64 " (am=%u > VTD_MAMV=%u)\n " ,
2380
+ ", lo=0x%" PRIx64 " (am=%u > VTD_MAMV=%u)" ,
2381
2381
__func__ , inv_desc -> hi , inv_desc -> lo ,
2382
2382
am , (unsigned )VTD_MAMV );
2383
2383
return false;
@@ -2387,7 +2387,7 @@ static bool vtd_process_iotlb_desc(IntelIOMMUState *s, VTDInvDesc *inv_desc)
2387
2387
2388
2388
default :
2389
2389
error_report_once ("%s: invalid iotlb inv desc: hi=0x%" PRIx64
2390
- ", lo=0x%" PRIx64 " (type mismatch: 0x%llx)\n " ,
2390
+ ", lo=0x%" PRIx64 " (type mismatch: 0x%llx)" ,
2391
2391
__func__ , inv_desc -> hi , inv_desc -> lo ,
2392
2392
inv_desc -> lo & VTD_INV_DESC_IOTLB_G );
2393
2393
return false;
0 commit comments