Module Name: src
Committed By: skrll
Date: Thu Nov 8 06:49:09 UTC 2018
Modified Files:
src/sys/arch/arm/s3c2xx0: s3c2800_pci.c
src/sys/arch/evbarm/ifpga: ifpga_pci.c
Log Message:
Fix build after recent arm32_pci_chipset change
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/arm/s3c2xx0/s3c2800_pci.c
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/evbarm/ifpga/ifpga_pci.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/arm/s3c2xx0/s3c2800_pci.c
diff -u src/sys/arch/arm/s3c2xx0/s3c2800_pci.c:1.23 src/sys/arch/arm/s3c2xx0/s3c2800_pci.c:1.24
--- src/sys/arch/arm/s3c2xx0/s3c2800_pci.c:1.23 Wed Apr 19 12:34:14 2017
+++ src/sys/arch/arm/s3c2xx0/s3c2800_pci.c Thu Nov 8 06:49:09 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: s3c2800_pci.c,v 1.23 2017/04/19 12:34:14 jmcneill Exp $ */
+/* $NetBSD: s3c2800_pci.c,v 1.24 2018/11/08 06:49:09 skrll Exp $ */
/*
* Copyright (c) 2002 Fujitsu Component Limited
@@ -100,7 +100,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: s3c2800_pci.c,v 1.23 2017/04/19 12:34:14 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: s3c2800_pci.c,v 1.24 2018/11/08 06:49:09 skrll Exp $");
#include "opt_pci.h"
#include "pci.h"
@@ -202,6 +202,7 @@ struct arm32_pci_chipset sspci_chipset =
s3c2800_pci_bus_maxdevs,
s3c2800_pci_make_tag,
s3c2800_pci_decompose_tag,
+ NULL,
s3c2800_pci_conf_read,
s3c2800_pci_conf_write,
NULL, /* intr_v */
Index: src/sys/arch/evbarm/ifpga/ifpga_pci.c
diff -u src/sys/arch/evbarm/ifpga/ifpga_pci.c:1.22 src/sys/arch/evbarm/ifpga/ifpga_pci.c:1.23
--- src/sys/arch/evbarm/ifpga/ifpga_pci.c:1.22 Fri Nov 2 13:46:24 2018
+++ src/sys/arch/evbarm/ifpga/ifpga_pci.c Thu Nov 8 06:49:09 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: ifpga_pci.c,v 1.22 2018/11/02 13:46:24 maya Exp $ */
+/* $NetBSD: ifpga_pci.c,v 1.23 2018/11/08 06:49:09 skrll Exp $ */
/*
* Copyright (c) 2001 ARM Ltd
@@ -64,7 +64,7 @@
#define _ARM32_BUS_DMA_PRIVATE
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ifpga_pci.c,v 1.22 2018/11/02 13:46:24 maya Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ifpga_pci.c,v 1.23 2018/11/08 06:49:09 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -107,6 +107,7 @@ struct arm32_pci_chipset ifpga_pci_chips
ifpga_pci_bus_maxdevs,
ifpga_pci_make_tag,
ifpga_pci_decompose_tag,
+ NULL,
ifpga_pci_conf_read,
ifpga_pci_conf_write,
NULL, /* intr_v */