diff options
| author | jakllsch <jakllsch@NetBSD.org> | 2020-09-23 13:45:14 +0000 |
|---|---|---|
| committer | jakllsch <jakllsch@NetBSD.org> | 2020-09-23 13:45:14 +0000 |
| commit | 3a5e23017ada7647b5248e17d628df080757e30c (patch) | |
| tree | 678d1f7598d5822ea4cc9460b2096543d8bfb060 /sys | |
| parent | 3dd0ee253107eea35028fa0c10651bdcd04d3340 (diff) | |
whitespace fix
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/pci/virtio_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/virtio_pci.c b/sys/dev/pci/virtio_pci.c index d90d2731500..0f719f0a687 100644 --- a/sys/dev/pci/virtio_pci.c +++ b/sys/dev/pci/virtio_pci.c @@ -1,4 +1,4 @@ -/* $NetBSD: virtio_pci.c,v 1.13 2020/09/17 17:33:50 jakllsch Exp $ */ +/* $NetBSD: virtio_pci.c,v 1.14 2020/09/23 13:45:14 jakllsch Exp $ */ /* * Copyright (c) 2010 Minoura Makoto. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: virtio_pci.c,v 1.13 2020/09/17 17:33:50 jakllsch Exp $"); +__KERNEL_RCSID(0, "$NetBSD: virtio_pci.c,v 1.14 2020/09/23 13:45:14 jakllsch Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -734,7 +734,7 @@ retry: psc->sc_ihs_num = 1; psc->sc_config_offset = VIRTIO_CONFIG_DEVICE_CONFIG_NOMSI; - error = pci_get_capability(pc, tag, PCI_CAP_MSIX, &off, NULL); + error = pci_get_capability(pc, tag, PCI_CAP_MSIX, &off, NULL); if (error != 0) { ctl = pci_conf_read(pc, tag, off + PCI_MSIX_CTL); ctl &= ~PCI_MSIX_CTL_ENABLE; |
