File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
struct mp { // floating pointer
4
4
uchar signature [4 ]; // "_MP_"
5
- void * physaddr ; // phys addr of MP config table
5
+ uint physaddr ; // phys addr of MP config table
6
6
uchar length ; // 1
7
7
uchar specrev ; // [14]
8
8
uchar checksum ; // all bytes must add up to 0
@@ -17,10 +17,10 @@ struct mpconf { // configuration table header
17
17
uchar version ; // [14]
18
18
uchar checksum ; // all bytes must add up to 0
19
19
uchar product [20 ]; // product id
20
- uint * oemtable ; // OEM table pointer
20
+ uint oemtable ; // OEM table pointer
21
21
ushort oemlength ; // OEM table length
22
22
ushort entry ; // entry count
23
- uint * lapicaddr ; // address of local APIC
23
+ uint lapicaddr ; // address of local APIC
24
24
ushort xlength ; // extended table length
25
25
uchar xchecksum ; // extended table checksum
26
26
uchar reserved ;
@@ -42,7 +42,7 @@ struct mpioapic { // I/O APIC table entry
42
42
uchar apicno ; // I/O APIC id
43
43
uchar version ; // I/O APIC version
44
44
uchar flags ; // I/O APIC flags
45
- uint * addr ; // I/O APIC address
45
+ uint addr ; // I/O APIC address
46
46
};
47
47
48
48
// Table entry types
You can’t perform that action at this time.
0 commit comments