apic: make msr-related function names consistent with the overall style
This commit is contained in:
+3
-3
@@ -13,9 +13,9 @@ uint32_t fat32_datetime(uint16_t year, uint8_t month, uint8_t day, uint8_t hour,
|
||||
|
||||
//got these from osdev.org
|
||||
void cpuid(int code, uint32_t *a, uint32_t *d);
|
||||
bool cpuHasMSR();
|
||||
void cpuGetMSR(uint32_t msr, uint32_t *lo, uint32_t *hi);
|
||||
void cpuSetMSR(uint32_t msr, uint32_t lo, uint32_t hi);
|
||||
bool cpu_has_msr();
|
||||
void cpu_get_msr(uint32_t msr, uint32_t *lo, uint32_t *hi);
|
||||
void cpu_set_msr(uint32_t msr, uint32_t lo, uint32_t hi);
|
||||
|
||||
#define inb inportb
|
||||
#define outb outportb
|
||||
|
||||
Reference in New Issue
Block a user