svn commit: r346355 - head/sys/x86/iommu

Konstantin Belousov kib at FreeBSD.org
Tue Sep 3 14:07:58 UTC 2019


Author: kib
Date: Thu Apr 18 15:31:03 2019
New Revision: 346355
URL: https://svnweb.freebsd.org/changeset/base/346355

Log:
  Use correct type name.
  
  Sponsored by:	Mellanox Technologies
  MFC after:	1 week

Modified:
  head/sys/x86/iommu/intel_drv.c

Modified: head/sys/x86/iommu/intel_drv.c
==============================================================================
--- head/sys/x86/iommu/intel_drv.c	Thu Apr 18 15:19:28 2019	(r346354)
+++ head/sys/x86/iommu/intel_drv.c	Thu Apr 18 15:31:03 2019	(r346355)
@@ -1010,8 +1010,8 @@ dmar_inst_rmrr_iter(ACPI_DMAR_HEADER *dmarh, void *arg
 				printf("dmar%d no dev found for RMRR "
 				    "[%#jx, %#jx] rid %#x scope path ",
 				     iria->dmar->unit,
-				     (uintptr_t)resmem->BaseAddress,
-				     (uintptr_t)resmem->EndAddress,
+				     (uintmax_t)resmem->BaseAddress,
+				     (uintmax_t)resmem->EndAddress,
 				     rid);
 				dmar_print_path(devscope->Bus, dev_path_len,
 				    (const ACPI_DMAR_PCI_PATH *)(devscope + 1));




More information about the svn-src-all mailing list