summaryrefslogtreecommitdiff
path: root/arch/x86/machine
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-06-25 10:52:57 +0200
committerRichard Braun <rbraun@sceen.net>2017-06-25 10:52:57 +0200
commitcbb58c1daa596d10fa5d622f302e530fa42a02a1 (patch)
treecb601d6b59234725262c01d0a18ef9d2e609a27d /arch/x86/machine
parent9e1c5185ee157f4b0b155c0a788bcd0557c44623 (diff)
x86/cpu: remove unnecessary qualifiers on the IDT register variable
Diffstat (limited to 'arch/x86/machine')
-rw-r--r--arch/x86/machine/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/machine/cpu.c b/arch/x86/machine/cpu.c
index 6263e18..4746c5f 100644
--- a/arch/x86/machine/cpu.c
+++ b/arch/x86/machine/cpu.c
@@ -414,7 +414,7 @@ cpu_idt_set_double_fault(void (*isr)(void))
static void
cpu_load_idt(void)
{
- static volatile struct cpu_pseudo_desc idtr; /* TODO Review this */
+ struct cpu_pseudo_desc idtr;
idtr.address = (unsigned long)cpu_idt;
idtr.limit = sizeof(cpu_idt) - 1;