Searched refs:tfms (Results 1 – 2 of 2) sorted by relevance
/linux-2.4.37.9/arch/x86_64/kernel/ |
D | setup.c | 656 u32 xlvl, tfms; in identify_cpu() local 679 cpuid(0x00000001, &tfms, &misc, &c->x86_capability[4], in identify_cpu() 681 c->x86 = (tfms >> 8) & 15; in identify_cpu() 682 c->x86_model = (tfms >> 4) & 15; in identify_cpu() 684 c->x86 += (tfms >> 20) & 0xff; in identify_cpu() 685 c->x86_model += ((tfms >> 16) & 0xF) << 4; in identify_cpu() 687 c->x86_mask = tfms & 15; in identify_cpu()
|
/linux-2.4.37.9/arch/i386/kernel/ |
D | setup.c | 2814 u32 xlvl, tfms; in identify_cpu() local 2846 cpuid(0x00000001, &tfms, &junk, &excap, &capability); in identify_cpu() 2849 c->x86 = (tfms >> 8) & 15; in identify_cpu() 2850 c->x86_model = (tfms >> 4) & 15; in identify_cpu() 2852 c->x86 += (tfms >> 20) & 0xff; in identify_cpu() 2853 c->x86_model += ((tfms >> 16) & 0xF) << 4; in identify_cpu() 2855 c->x86_mask = tfms & 15; in identify_cpu()
|