From: Michael Brown Date: Thu, 29 Jun 2023 14:38:08 +0000 (+0100) Subject: [arm] Remove redundant inclusion of io.h X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfe65aa82628f364718e8cb261e8f6b952cd9d26;p=thirdparty%2Fipxe.git [arm] Remove redundant inclusion of io.h The PCI I/O API (supporting accesses to PCI configuration space) is not related to the general I/O API (supporting accesses to memory-mapped I/O peripherals). Remove the spurious inclusion of ipxe/io.h from the PCI I/O header. Signed-off-by: Michael Brown --- diff --git a/src/arch/arm/include/bits/pci_io.h b/src/arch/arm/include/bits/pci_io.h index fba0eb979..91f507a44 100644 --- a/src/arch/arm/include/bits/pci_io.h +++ b/src/arch/arm/include/bits/pci_io.h @@ -9,6 +9,4 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); -#include - #endif /* _BITS_PCI_IO_H */