Changeset f3fed18 in mainline


Ignore:
Timestamp:
2007-05-09T23:19:09Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b8f11baa
Parents:
f169b7b
Message:

remove outstanding move

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/include/cpuid.h

    rf169b7b rf3fed18  
    5050} __attribute__ ((packed));
    5151
    52 typedef union cpuid_extended_feature_info
    53 {
     52typedef union cpuid_extended_feature_info {
    5453        struct __cpuid_extended_feature_info bits;
    55         uint32_t                                word;
    56 }cpuid_extended_feature_info;
    57 
     54        uint32_t word;
     55} cpuid_extended_feature_info;
    5856
    5957struct __cpuid_feature_info {
     
    6664} __attribute__ ((packed));
    6765
    68 typedef union cpuid_feature_info
    69 {
     66typedef union cpuid_feature_info {
    7067        struct __cpuid_feature_info bits;
    71         uint32_t                word       ;
    72 }cpuid_feature_info;
     68        uint32_t word;
     69} cpuid_feature_info;
    7370
    7471
     
    10198{
    10299        asm volatile (
    103                 "movl %4, %%eax\n"
    104100                "cpuid\n"
    105101                : "=a" (info->cpuid_eax), "=b" (info->cpuid_ebx), "=c" (info->cpuid_ecx), "=d" (info->cpuid_edx)
    106                 : "m" (cmd)
     102                : "a" (cmd)
    107103        );
    108104}
Note: See TracChangeset for help on using the changeset viewer.