Blame view

kernel/linux-rt-4.4.41/arch/s390/include/asm/cpu.h 510 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  /*
   *    Copyright IBM Corp. 2000, 2009
   *    Author(s): Hartmut Penner <hp@de.ibm.com>,
   *		 Martin Schwidefsky <schwidefsky@de.ibm.com>,
   *		 Christian Ehrhardt <ehrhardt@de.ibm.com>,
   */
  
  #ifndef _ASM_S390_CPU_H
  #define _ASM_S390_CPU_H
  
  #ifndef __ASSEMBLY__
  
  #include <linux/types.h>
  
  struct cpuid
  {
  	unsigned int version :	8;
  	unsigned int ident   : 24;
  	unsigned int machine : 16;
  	unsigned int unused  : 16;
  } __attribute__ ((packed, aligned(8)));
  
  #endif /* __ASSEMBLY__ */
  #endif /* _ASM_S390_CPU_H */