cpudata.h 339 B

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