aboutsummaryrefslogtreecommitdiff
path: root/src/include/device/pci_type.h
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-12-03 09:32:31 +0100
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-01-04 12:13:20 +0000
commite3682b6c1c14c8ad2253a3e5d19fb7dfe417c018 (patch)
tree40c5089e1b03c7acc853d8b620eace74f5ceaf2b /src/include/device/pci_type.h
parentf9e47cc4c2ddefaaa91ddae25449803cdd5243b8 (diff)
src: Move {pci,pnp}_devfn_t to common 'device/pci_type.h'
Definitions of these types are arch-agnostic. Shared device subsystem files cannot include arch/pci_ops.h for ARM and arch/io.h for x86. Change-Id: I6a3deea676308e2dc703b5e06558b05235191044 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/29947 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/include/device/pci_type.h')
-rw-r--r--src/include/device/pci_type.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/include/device/pci_type.h b/src/include/device/pci_type.h
new file mode 100644
index 0000000000..2849ececa7
--- /dev/null
+++ b/src/include/device/pci_type.h
@@ -0,0 +1,22 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef DEVICE_PCI_TYPE_H
+#define DEVICE_PCI_TYPE_H
+
+#include <stdint.h>
+
+typedef u32 pci_devfn_t;
+typedef u32 pnp_devfn_t;
+
+#endif /* DEVICE_PCI_TYPE_H */