summaryrefslogtreecommitdiffstats
path: root/src/include/device/device.h
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2023-01-10 15:22:58 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-04-11 16:23:28 +0000
commite84b095d3a238ae5fd734c4c186132a4e07eea07 (patch)
tree24e2c7a3ed9050e26d5a1511e8946ced86f19cd5 /src/include/device/device.h
parent8b8400a889abadbbd2156d4a35a27203068766f1 (diff)
downloadcoreboot-e84b095d3a238ae5fd734c4c186132a4e07eea07.tar.gz
coreboot-e84b095d3a238ae5fd734c4c186132a4e07eea07.tar.bz2
coreboot-e84b095d3a238ae5fd734c4c186132a4e07eea07.zip
util/sconfig: Remove unused ioapic and irq keywords
Ioapic information in the devicetree was only used to set up mptables but this generic driver was removed (ca5a793 drivers/generic/ioapic: Drop poor implementation). This removes the unused remainders from mainboard devicetrees. Remove ioapic setup from sconfig. Change-Id: Ib3fef0bf923ab3f02f3aeed2e55cf662a3dc3a1b Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/71789 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Diffstat (limited to 'src/include/device/device.h')
-rw-r--r--src/include/device/device.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h
index 831141f851b1..0b67d3dc0206 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -101,13 +101,6 @@ struct bus {
* combination:
*/
-struct pci_irq_info {
- unsigned int ioapic_irq_pin;
- unsigned int ioapic_src_pin;
- unsigned int ioapic_dst_id;
- unsigned int ioapic_flags;
-};
-
struct device {
DEVTREE_CONST struct bus *bus; /* bus this device is on, for bridge
* devices, it is the up stream bus */
@@ -144,7 +137,6 @@ struct device {
DEVTREE_CONST struct bus *link_list;
#if !DEVTREE_EARLY
- struct pci_irq_info pci_irq_info[4];
struct device_operations *ops;
struct chip_operations *chip_ops;
const char *name;