Module Name: src Committed By: msaitoh Date: Wed Sep 4 10:34:04 UTC 2019
Modified Files: src/sys/dev/pci/ixgbe: ixv.c Log Message: Use aprint_*() in the attach function. To generate a diff of this commit: cvs rdiff -u -r1.129 -r1.130 src/sys/dev/pci/ixgbe/ixv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/ixgbe/ixv.c diff -u src/sys/dev/pci/ixgbe/ixv.c:1.129 src/sys/dev/pci/ixgbe/ixv.c:1.130 --- src/sys/dev/pci/ixgbe/ixv.c:1.129 Wed Sep 4 07:29:34 2019 +++ src/sys/dev/pci/ixgbe/ixv.c Wed Sep 4 10:34:04 2019 @@ -1,4 +1,4 @@ -/*$NetBSD: ixv.c,v 1.129 2019/09/04 07:29:34 msaitoh Exp $*/ +/*$NetBSD: ixv.c,v 1.130 2019/09/04 10:34:04 msaitoh Exp $*/ /****************************************************************************** @@ -516,7 +516,7 @@ ixv_attach(device_t parent, device_t dev error = ixv_allocate_msix(adapter, pa); if (error) { - device_printf(dev, "ixv_allocate_msix() failed!\n"); + aprint_error_dev(dev, "ixv_allocate_msix() failed!\n"); goto err_late; }