auxio.h 310 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef ___ASM_SPARC_AUXIO_H
  3. #define ___ASM_SPARC_AUXIO_H
  4. #ifndef __ASSEMBLY__
  5. extern void __iomem *auxio_register;
  6. #endif /* ifndef __ASSEMBLY__ */
  7. #if defined(__sparc__) && defined(__arch64__)
  8. #include <asm/auxio_64.h>
  9. #else
  10. #include <asm/auxio_32.h>
  11. #endif
  12. #endif