/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef __OPROM_IO_H__ #define __OPROM_IO_H__ #if CONFIG(ARCH_X86) #include #else void outb(u8 val, u16 port); void outw(u16 val, u16 port); void outl(u32 val, u16 port); u8 inb(u16 port); u16 inw(u16 port); u32 inl(u16 port); #endif #endif /* __OPROM_IO_H__ */