io.h 247 B

1234567891011
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _TOOLS_ASM_IO_H
  3. #define _TOOLS_ASM_IO_H
  4. #if defined(__i386__) || defined(__x86_64__)
  5. #include "../../arch/x86/include/asm/io.h"
  6. #else
  7. #include <asm-generic/io.h>
  8. #endif
  9. #endif /* _TOOLS_ASM_IO_H */