cpudata.h 378 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef ___ASM_SPARC_CPUDATA_H
  3. #define ___ASM_SPARC_CPUDATA_H
  4. #ifndef __ASSEMBLY__
  5. #include <linux/threads.h>
  6. #include <linux/percpu.h>
  7. extern const struct seq_operations cpuinfo_op;
  8. #endif /* !(__ASSEMBLY__) */
  9. #if defined(__sparc__) && defined(__arch64__)
  10. #include <asm/cpudata_64.h>
  11. #else
  12. #include <asm/cpudata_32.h>
  13. #endif
  14. #endif