diff options
| author | jmcneill <jmcneill@NetBSD.org> | 2018-10-15 12:46:43 +0000 |
|---|---|---|
| committer | jmcneill <jmcneill@NetBSD.org> | 2018-10-15 12:46:43 +0000 |
| commit | f438ccb6c9fbd9bd9d4e3b3ed072d516d110eed3 (patch) | |
| tree | ec48fe73e8388f836a9434b24b3196dc34d1465a /sys/dev/acpi | |
| parent | 319ea397b31fd1a184b7e7b34dbd6e43b2501b89 (diff) | |
Fix signature for acpimcfg_configure_bus in non-PCI_NETBSD_CONFIGURE case
Diffstat (limited to 'sys/dev/acpi')
| -rw-r--r-- | sys/dev/acpi/acpi_mcfg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpi_mcfg.c b/sys/dev/acpi/acpi_mcfg.c index b4bf853b2e1..e8ef42df30c 100644 --- a/sys/dev/acpi/acpi_mcfg.c +++ b/sys/dev/acpi/acpi_mcfg.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_mcfg.c,v 1.8 2018/10/15 10:01:32 jmcneill Exp $ */ +/* $NetBSD: acpi_mcfg.c,v 1.9 2018/10/15 12:46:43 jmcneill Exp $ */ /*- * Copyright (C) 2015 NONAKA Kimihiro <nonaka@NetBSD.org> @@ -28,7 +28,7 @@ #include "opt_pci.h" #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: acpi_mcfg.c,v 1.8 2018/10/15 10:01:32 jmcneill Exp $"); +__KERNEL_RCSID(0, "$NetBSD: acpi_mcfg.c,v 1.9 2018/10/15 12:46:43 jmcneill Exp $"); #include <sys/param.h> #include <sys/device.h> @@ -878,7 +878,7 @@ cleanup: #else int acpimcfg_configure_bus(device_t self, pci_chipset_tag_t pc, ACPI_HANDLE handle, - int cacheline_size) + int bus, int cacheline_size) { return ENXIO; } |
