svn commit: r334417 - head/sys/powerpc/powernv
Justin Hibbits
jhibbits at FreeBSD.org
Thu May 31 04:11:41 UTC 2018
Author: jhibbits
Date: Thu May 31 04:11:40 2018
New Revision: 334417
URL: https://svnweb.freebsd.org/changeset/base/334417
Log:
Remove a debug printf from opal_pci driver
Modified:
head/sys/powerpc/powernv/opal_pci.c
Modified: head/sys/powerpc/powernv/opal_pci.c
==============================================================================
--- head/sys/powerpc/powernv/opal_pci.c Thu May 31 02:58:08 2018 (r334416)
+++ head/sys/powerpc/powernv/opal_pci.c Thu May 31 04:11:40 2018 (r334417)
@@ -364,7 +364,6 @@ opalpci_attach(device_t dev)
maxmem = roundup2(powerpc_ptob(Maxmem), tce_size);
entries = round_pow2(maxmem / tce_size);
tce_tbl_size = max(entries * sizeof(uint64_t), 4096);
- device_printf(dev, "Entries: %ld, tce_size: %#lx\n", entries, tce_size);
if (entries > OPAL_PCI_TCE_MAX_ENTRIES)
panic("POWERNV supports only %jdGB of memory space\n",
(uintmax_t)((OPAL_PCI_TCE_MAX_ENTRIES * tce_size) >> 30));
More information about the svn-src-all
mailing list