Subversion Repositories HelenOS

Rev

Rev 391 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 391 Rev 452
Line 98... Line 98...
98
 
98
 
99
 
99
 
100
void cpu_identify(void)
100
void cpu_identify(void)
101
{
101
{
102
    cpu_info_t info;
102
    cpu_info_t info;
103
    int i;
-
 
104
 
103
 
105
    CPU->arch.vendor = VendorUnknown;
104
    CPU->arch.vendor = VendorUnknown;
106
    if (has_cpuid()) {
105
    if (has_cpuid()) {
107
        cpuid(0, &info);
106
        cpuid(0, &info);
108
 
107