]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - cpu/i386/interrupts.c
rename CFG_ macros to CONFIG_SYS
[karo-tx-uboot.git] / cpu / i386 / interrupts.c
index 84825aea192392105b0682fc4c035345da5cbd99..f6dbccac5707d80087aa542780a51a3ea5cfca79 100644 (file)
@@ -22,7 +22,6 @@
  */
 
 #include <common.h>
-#include <syscall.h>
 #include <malloc.h>
 #include <asm/io.h>
 #include <asm/i8259.h>
@@ -58,31 +57,6 @@ typedef struct {
 
 static irq_desc_t irq_table[MAX_IRQ];
 
-
-asm(".globl syscall_entry\n" \
-       "syscall_entry:\n" \
-       "popl   %ebx\n"        /* throw away the return address, flags  */ \
-       "popl   %ebx\n"        /* and segment that the INT instruction pushed */ \
-       "popl   %ebx\n"        /* on to the stack */ \
-       "movl   %eax, %ecx\n"  /* load the syscall nr argument*/ \
-       "movl   syscall_tbl, %eax\n" /* load start of syscall table */ \
-       "cmpl   $(11-1), %ecx\n"  /* FixMe: find a way to use NR_SYSCALLS macro here */ \
-       "ja     bad_syscall\n" \
-       "movl   (%eax, %ecx, 4), %eax\n" /* load the handler of the syscall*/ \
-       "test   %eax, %eax\n" /* test for null */ \
-       "je     bad_syscall\n" \
-       "popl   %ecx\n" \
-       "popl   %ebx\n" \
-       "sti    \n" \
-       "jmp    *%eax\n" \
-"bad_syscall: movl $0xffffffff, %eax\n" \
-       "popl   %ecx\n" \
-       "popl   %ebx\n" \
-       "ret");
-
-void __attribute__ ((regparm(0))) syscall_entry(void);
-
-
 asm ("irq_return:\n"
      "     addl  $4, %esp\n"
      "     popa\n"
@@ -483,7 +457,6 @@ int interrupt_init(void)
        set_vector(0x2e, irq_14);
        set_vector(0x2f, irq_15);
        /* vectors 0x30-0x3f are reserved for irq 16-31 */
-       set_vector(0x40, syscall_entry);
 
 
        /* Mask all interrupts */
@@ -536,7 +509,7 @@ int disable_interrupts(void)
 }
 
 
-#ifdef CFG_RESET_GENERIC
+#ifdef CONFIG_SYS_RESET_GENERIC
 
 void __attribute__ ((regparm(0))) generate_gpf(void);
 asm(".globl generate_gpf\n"