From 6537c655e3d9b34da1132ac79aaf9e6a42d90a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20P=C3=A9dron?= Date: Sun, 25 Aug 2013 18:23:15 +0000 Subject: [PATCH] vga_pci: Remove left-over debugging printf()'s --- sys/dev/pci/vga_pci.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c index 0f3aa28e5dd7..94c64c07c06c 100644 --- a/sys/dev/pci/vga_pci.c +++ b/sys/dev/pci/vga_pci.c @@ -105,13 +105,11 @@ vga_pci_map_bios(device_t dev, size_t *size) * the original ROM may not be valid after boot. */ - printf("%s: Mapping BIOS shadow\n", __func__); *size = VGA_PCI_BIOS_SHADOW_SIZE; return (pmap_mapbios(VGA_PCI_BIOS_SHADOW_ADDR, *size)); } #endif - printf("%s: Mapping PCI expansion ROM\n", __func__); rid = PCIR_BIOS; res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE); if (res == NULL) { @@ -135,7 +133,6 @@ vga_pci_unmap_bios(device_t dev, void *bios) #if defined(__amd64__) || defined(__i386__) || defined(__ia64__) if (vga_pci_is_boot_display(dev)) { /* We mapped the BIOS shadow copy located at 0xC0000. */ - printf("%s: Unmapping BIOS shadow\n", __func__); pmap_unmapdev((vm_offset_t)bios, VGA_PCI_BIOS_SHADOW_SIZE); return; @@ -151,7 +148,6 @@ vga_pci_unmap_bios(device_t dev, void *bios) * caller's reference. */ - printf("%s: Unmapping PCI expansion ROM\n", __func__); rid = PCIR_BIOS; res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE);