Module Name: src Committed By: knakahara Date: Thu Aug 25 11:06:50 UTC 2016
Modified Files: src/sys/arch/x86/pci: pci_machdep.c Log Message: fix line break position in verbose message. pointed out by nonaka@n.o, thanks. To generate a diff of this commit: cvs rdiff -u -r1.74 -r1.75 src/sys/arch/x86/pci/pci_machdep.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/arch/x86/pci/pci_machdep.c diff -u src/sys/arch/x86/pci/pci_machdep.c:1.74 src/sys/arch/x86/pci/pci_machdep.c:1.75 --- src/sys/arch/x86/pci/pci_machdep.c:1.74 Fri Jun 10 23:07:52 2016 +++ src/sys/arch/x86/pci/pci_machdep.c Thu Aug 25 11:06:50 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: pci_machdep.c,v 1.74 2016/06/10 23:07:52 jakllsch Exp $ */ +/* $NetBSD: pci_machdep.c,v 1.75 2016/08/25 11:06:50 knakahara Exp $ */ /*- * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. @@ -73,7 +73,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.74 2016/06/10 23:07:52 jakllsch Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.75 2016/08/25 11:06:50 knakahara Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -486,11 +486,11 @@ pci_attach_hook(device_t parent, device_ if (pci_has_msi_quirk(id, PCI_QUIRK_DISABLE_MSI)) { pba->pba_flags &= ~PCI_FLAGS_MSI_OKAY; pba->pba_flags &= ~PCI_FLAGS_MSIX_OKAY; - aprint_verbose_dev(self, "This pci host supports neither MSI nor MSI-X.\n"); + aprint_verbose_dev(self, "\nThis pci host supports neither MSI nor MSI-X."); } else if (pci_has_msi_quirk(id, PCI_QUIRK_DISABLE_MSIX)) { pba->pba_flags |= PCI_FLAGS_MSI_OKAY; pba->pba_flags &= ~PCI_FLAGS_MSIX_OKAY; - aprint_verbose_dev(self, "This pci host does not support MSI-X.\n"); + aprint_verbose_dev(self, "\nThis pci host does not support MSI-X."); } else { pba->pba_flags |= PCI_FLAGS_MSI_OKAY; pba->pba_flags |= PCI_FLAGS_MSIX_OKAY;