x86: structure declaration renaming

Renamed common structures to vendor specific naming scheme
so other vendors will be able to use the same naming
convention.

Signed-off-by: Peter Oruba <peter.oruba@amd.com>
Cc: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Peter Oruba
2008-07-28 18:44:18 +02:00
committed by Ingo Molnar
parent 3e135d887c
commit d4ee366868
2 changed files with 30 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
struct microcode_header {
struct microcode_header_intel {
unsigned int hdrver;
unsigned int rev;
unsigned int date;
@@ -11,8 +11,8 @@ struct microcode_header {
unsigned int reserved[3];
};
struct microcode {
struct microcode_header hdr;
struct microcode_intel {
struct microcode_header_intel hdr;
unsigned int bits[0];
};
@@ -35,5 +35,7 @@ struct ucode_cpu_info {
unsigned int sig;
unsigned int pf;
unsigned int rev;
struct microcode *mc;
union {
struct microcode_intel *mc_intel;
} mc;
};