commit | f96ff4484d1b49740c643c3cc5ff613fc0828e0f | [log] [tgz] |
---|---|---|
author | Kevin O'Connor <kevin@koconnor.net> | Sat Aug 10 10:37:50 2013 -0400 |
committer | Kevin O'Connor <kevin@koconnor.net> | Sat Aug 10 13:05:39 2013 -0400 |
tree | 06e2ce3027a1ee2711c549e46fd7b7d0fff064fb | |
parent | 2b0fb8c5032fb3590b1325ce6f128ef0af606465 [diff] |
Minor - no need to declare MaxCountCPUs as VARFSEG. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
diff --git a/src/smp.c b/src/smp.c index 0dfec29..0b31573 100644 --- a/src/smp.c +++ b/src/smp.c
@@ -34,7 +34,7 @@ } u32 CountCPUs VARFSEG; -u32 MaxCountCPUs VARFSEG; +u32 MaxCountCPUs; // 256 bits for the found APIC IDs u32 FoundAPICIDs[256/32] VARFSEG; extern void smp_ap_boot_code(void);