[build] Centralise dummy architecture-specific headers

Simplify the process of adding a new CPU architecture by providing
common implementations of typically empty architecture-specific header
files.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2024-09-03 14:56:07 +01:00
parent c7f2e75519
commit 804f35cb5a
45 changed files with 238 additions and 336 deletions

15
src/include/bits/pci_io.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef _BITS_PCI_IO_H
#define _BITS_PCI_IO_H
/** @file
*
* Dummy architecture-specific PCI I/O API implementations
*
* This file is included only if the architecture does not provide its
* own version of this file.
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#endif /* _BITS_PCI_IO_H */