]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - include/asm-x86/microcode.h
x86: typedef removal
[mirror_ubuntu-hirsute-kernel.git] / include / asm-x86 / microcode.h
CommitLineData
9a56a0f8
PO
1struct microcode_header {
2 unsigned int hdrver;
3 unsigned int rev;
4 unsigned int date;
5 unsigned int sig;
6 unsigned int cksum;
7 unsigned int ldrver;
8 unsigned int pf;
9 unsigned int datasize;
10 unsigned int totalsize;
11 unsigned int reserved[3];
12};
13
14struct microcode {
15 struct microcode_header hdr;
16 unsigned int bits[0];
17};
18
9a56a0f8
PO
19/* microcode format is extended from prescott processors */
20struct extended_signature {
21 unsigned int sig;
22 unsigned int pf;
23 unsigned int cksum;
24};
25
26struct extended_sigtable {
27 unsigned int count;
28 unsigned int cksum;
29 unsigned int reserved[3];
30 struct extended_signature sigs[0];
31};