diff options
author | Jaswinder Singh Rajput <jaswinder@infradead.org> | 2009-01-08 05:13:26 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-08 09:37:37 -0500 |
commit | 1eb1b3b65dc3e3ffcc6a60e115c085c0c11c1077 (patch) | |
tree | 92a5c8d565f9e0eed2b4c08c9abf1fc8cf0dddcb /arch/x86/include/asm/mpspec_def.h | |
parent | 41401db698cbb5d1869776bf336881db267e7d19 (diff) |
x86: rename all fields of mpf_intel mpf_X to X
Impact: cleanup, solve 80 columns wrap problems
It would be cleaner to rename all the mpf->mpf_X fields to
mpf->X - that alone would give 4 characters per usage site.
(we already know that it's an 'mpf' entity -
no need to duplicate that in the field too)
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/mpspec_def.h')
-rw-r--r-- | arch/x86/include/asm/mpspec_def.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/x86/include/asm/mpspec_def.h b/arch/x86/include/asm/mpspec_def.h index 187dc9201932..4a7f96d7c188 100644 --- a/arch/x86/include/asm/mpspec_def.h +++ b/arch/x86/include/asm/mpspec_def.h | |||
@@ -26,16 +26,16 @@ | |||
26 | 26 | ||
27 | /* Intel MP Floating Pointer Structure */ | 27 | /* Intel MP Floating Pointer Structure */ |
28 | struct mpf_intel { | 28 | struct mpf_intel { |
29 | char mpf_signature[4]; /* "_MP_" */ | 29 | char signature[4]; /* "_MP_" */ |
30 | unsigned int mpf_physptr; /* Configuration table address */ | 30 | unsigned int physptr; /* Configuration table address */ |
31 | unsigned char mpf_length; /* Our length (paragraphs) */ | 31 | unsigned char length; /* Our length (paragraphs) */ |
32 | unsigned char mpf_specification;/* Specification version */ | 32 | unsigned char specification; /* Specification version */ |
33 | unsigned char mpf_checksum; /* Checksum (makes sum 0) */ | 33 | unsigned char checksum; /* Checksum (makes sum 0) */ |
34 | unsigned char mpf_feature1; /* Standard or configuration ? */ | 34 | unsigned char feature1; /* Standard or configuration ? */ |
35 | unsigned char mpf_feature2; /* Bit7 set for IMCR|PIC */ | 35 | unsigned char feature2; /* Bit7 set for IMCR|PIC */ |
36 | unsigned char mpf_feature3; /* Unused (0) */ | 36 | unsigned char feature3; /* Unused (0) */ |
37 | unsigned char mpf_feature4; /* Unused (0) */ | 37 | unsigned char feature4; /* Unused (0) */ |
38 | unsigned char mpf_feature5; /* Unused (0) */ | 38 | unsigned char feature5; /* Unused (0) */ |
39 | }; | 39 | }; |
40 | 40 | ||
41 | #define MPC_SIGNATURE "PCMP" | 41 | #define MPC_SIGNATURE "PCMP" |