summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/vga_pci.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2010-12-20 14:54:24 +0000
committerjhb <jhb@FreeBSD.org>2010-12-20 14:54:24 +0000
commit6135a630c9901d6b8285d8056542ae6c59cefcbb (patch)
treea1085e9551b8a429aea7d4077a7cb553aa0d5dc1 /sys/dev/pci/vga_pci.c
parent84fc9a463166d293ab6d3c385097aa92d8594869 (diff)
downloadFreeBSD-src-6135a630c9901d6b8285d8056542ae6c59cefcbb.zip
FreeBSD-src-6135a630c9901d6b8285d8056542ae6c59cefcbb.tar.gz
Don't whine about child drivers calling pci_enable_busmaster(). That is
perfectly normal. MFC after: 1 week
Diffstat (limited to 'sys/dev/pci/vga_pci.c')
-rw-r--r--sys/dev/pci/vga_pci.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c
index d86b8fb..cb1f8c1 100644
--- a/sys/dev/pci/vga_pci.c
+++ b/sys/dev/pci/vga_pci.c
@@ -243,8 +243,6 @@ static int
vga_pci_enable_busmaster(device_t dev, device_t child)
{
- device_printf(dev, "child %s requested pci_enable_busmaster\n",
- device_get_nameunit(child));
return (pci_enable_busmaster(dev));
}
@@ -252,8 +250,6 @@ static int
vga_pci_disable_busmaster(device_t dev, device_t child)
{
- device_printf(dev, "child %s requested pci_disable_busmaster\n",
- device_get_nameunit(child));
return (pci_disable_busmaster(dev));
}
OpenPOWER on IntegriCloud