summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/alpha/pci/pci_machdep.h3
-rw-r--r--sys/arch/arm/include/pci_machdep.h3
-rw-r--r--sys/arch/hppa/include/pci_machdep.h3
-rw-r--r--sys/arch/hppa64/include/pci_machdep.h3
-rw-r--r--sys/arch/landisk/include/pci_machdep.h3
-rw-r--r--sys/arch/loongson/include/pci_machdep.h3
-rw-r--r--sys/arch/macppc/include/pci_machdep.h3
-rw-r--r--sys/arch/octeon/include/pci_machdep.h3
-rw-r--r--sys/arch/sgi/pci/pci_machdep.h3
-rw-r--r--sys/arch/socppc/include/pci_machdep.h3
-rw-r--r--sys/arch/sparc64/include/pci_machdep.h3
11 files changed, 22 insertions, 11 deletions
diff --git a/sys/arch/alpha/pci/pci_machdep.h b/sys/arch/alpha/pci/pci_machdep.h
index 6aa33abb62b..daf9eff22af 100644
--- a/sys/arch/alpha/pci/pci_machdep.h
+++ b/sys/arch/alpha/pci/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.27 2012/09/04 19:37:40 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.28 2013/11/05 10:12:35 mpi Exp $ */
/* $NetBSD: pci_machdep.h,v 1.6 1996/11/19 04:49:21 cgd Exp $ */
/*
@@ -117,6 +117,7 @@ int alpha_sysctl_chipset(int *, u_int, char *, size_t *);
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
/*
* alpha-specific PCI functions.
diff --git a/sys/arch/arm/include/pci_machdep.h b/sys/arch/arm/include/pci_machdep.h
index c45b1eae93d..6686b5aa936 100644
--- a/sys/arch/arm/include/pci_machdep.h
+++ b/sys/arch/arm/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.12 2012/08/29 09:17:09 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.13 2013/11/05 10:12:35 mpi Exp $ */
/* $NetBSD: pci_machdep.h,v 1.2 2002/05/15 19:23:52 thorpej Exp $ */
/*
@@ -102,5 +102,6 @@ struct arm32_pci_chipset {
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
#define pci_dev_postattach(a, b)
diff --git a/sys/arch/hppa/include/pci_machdep.h b/sys/arch/hppa/include/pci_machdep.h
index 5d135f79759..38ee309a419 100644
--- a/sys/arch/hppa/include/pci_machdep.h
+++ b/sys/arch/hppa/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.10 2012/08/28 19:43:55 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.11 2013/11/05 10:12:35 mpi Exp $ */
/*
* Copyright (c) 2003 Michael Shalayeff
@@ -91,6 +91,7 @@ struct hppa_pci_chipset_tag {
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
#define pciide_machdep_compat_intr_establish(a, b, c, d, e) (NULL)
#define pciide_machdep_compat_intr_disestablish(a, b) ((void)(a), (void)(b))
diff --git a/sys/arch/hppa64/include/pci_machdep.h b/sys/arch/hppa64/include/pci_machdep.h
index 5275051e3a5..53aaf52bae8 100644
--- a/sys/arch/hppa64/include/pci_machdep.h
+++ b/sys/arch/hppa64/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.10 2012/09/04 19:35:54 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.11 2013/11/05 10:12:35 mpi Exp $ */
/*
* Copyright (c) 2005 Michael Shalayeff
@@ -82,6 +82,7 @@ struct hppa64_pci_chipset_tag {
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
#define pciide_machdep_compat_intr_establish(a, b, c, d, e) (NULL)
#define pciide_machdep_compat_intr_disestablish(a, b) ((void)(a), (void)(b))
diff --git a/sys/arch/landisk/include/pci_machdep.h b/sys/arch/landisk/include/pci_machdep.h
index f11d0d866c4..c142c26c8f7 100644
--- a/sys/arch/landisk/include/pci_machdep.h
+++ b/sys/arch/landisk/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.8 2012/09/04 19:39:08 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.9 2013/11/05 10:12:35 mpi Exp $ */
/* $NetBSD: pci_machdep.h,v 1.1 2006/09/01 21:26:18 uwe Exp $ */
/*
@@ -85,5 +85,6 @@ void landisk_pci_conf_interrupt(void *v, int bus, int dev, int pin,
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
#define pci_dev_postattach(a, b)
diff --git a/sys/arch/loongson/include/pci_machdep.h b/sys/arch/loongson/include/pci_machdep.h
index 8381922ed4e..f4ae48f0137 100644
--- a/sys/arch/loongson/include/pci_machdep.h
+++ b/sys/arch/loongson/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.7 2012/08/29 09:17:55 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.8 2013/11/05 10:12:35 mpi Exp $ */
/*
* Copyright (c) 2003-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -85,6 +85,7 @@ struct mips_pci_chipset {
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
/* PCI view of CPU memory */
extern paddr_t loongson_dma_base;
diff --git a/sys/arch/macppc/include/pci_machdep.h b/sys/arch/macppc/include/pci_machdep.h
index 6d5a3f3c094..73c7cdbc162 100644
--- a/sys/arch/macppc/include/pci_machdep.h
+++ b/sys/arch/macppc/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.1 2013/08/07 07:29:18 mpi Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.2 2013/11/05 10:12:35 mpi Exp $ */
/* $NetBSD: pci_machdep.h,v 1.7 2001/07/20 00:07:14 eeh Exp $ */
/*
@@ -95,6 +95,7 @@ int pci_ether_hw_addr(pci_chipset_tag_t, uint8_t *);
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
#define pci_dev_postattach(a, b)
diff --git a/sys/arch/octeon/include/pci_machdep.h b/sys/arch/octeon/include/pci_machdep.h
index 294b936c809..b868e06b61d 100644
--- a/sys/arch/octeon/include/pci_machdep.h
+++ b/sys/arch/octeon/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.6 2013/04/23 16:37:23 bcallah Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.7 2013/11/05 10:12:35 mpi Exp $ */
/*
* Copyright (c) 2003-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -113,6 +113,7 @@ static inline void pci_conf_write_db(void * c, pcitag_t t, int r, pcireg_t v,
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
/*
* Functions used during early system configuration.
diff --git a/sys/arch/sgi/pci/pci_machdep.h b/sys/arch/sgi/pci/pci_machdep.h
index db3982a8378..bedc7b65fec 100644
--- a/sys/arch/sgi/pci/pci_machdep.h
+++ b/sys/arch/sgi/pci/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.15 2012/08/29 09:17:55 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.16 2013/11/05 10:12:35 mpi Exp $ */
/*
* Copyright (c) 2003-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -100,6 +100,7 @@ struct mips_pci_chipset {
#define pci_dev_postattach(a, b) do { } while (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
/*
* Functions provided to machine-dependent PCI code.
diff --git a/sys/arch/socppc/include/pci_machdep.h b/sys/arch/socppc/include/pci_machdep.h
index 2ba90f5d6ef..1871d23b1a1 100644
--- a/sys/arch/socppc/include/pci_machdep.h
+++ b/sys/arch/socppc/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.1 2013/08/07 07:29:20 mpi Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.2 2013/11/05 10:12:35 mpi Exp $ */
/*
* Copyright (c) 1996 Carnegie-Mellon University.
@@ -99,5 +99,6 @@ struct ppc_pci_chipset {
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
#define pci_dev_postattach(a, b)
diff --git a/sys/arch/sparc64/include/pci_machdep.h b/sys/arch/sparc64/include/pci_machdep.h
index 676c42fb5e3..032fca935f1 100644
--- a/sys/arch/sparc64/include/pci_machdep.h
+++ b/sys/arch/sparc64/include/pci_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.h,v 1.31 2012/08/29 09:32:09 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.h,v 1.32 2013/11/05 10:12:35 mpi Exp $ */
/* $NetBSD: pci_machdep.h,v 1.7 2001/07/20 00:07:14 eeh Exp $ */
/*
@@ -105,6 +105,7 @@ int sparc64_pci_enumerate_bus(struct pci_softc *,
#define pci_probe_device_hook(c, a) (0)
#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3)
+#define pci_set_powerstate_md(c, t, s, p)
#define pciide_machdep_compat_intr_establish(a, b, c, d, e) (NULL)
#define pciide_machdep_compat_intr_disestablish(a, b) do { } while (0)