Commit d3f033f8 authored by Greg Ungerer's avatar Greg Ungerer

m68knommu: remove reduntant definitions of _ramvec

The base of the real RAM resident hardware vectors, _ramvec, is declared in
our asm/traps.h. No need to have local declarations spread around in other
files that use this. So remove them.
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent f84f52a5
...@@ -68,8 +68,6 @@ asmlinkage irqreturn_t inthandler5(void); ...@@ -68,8 +68,6 @@ asmlinkage irqreturn_t inthandler5(void);
asmlinkage irqreturn_t inthandler6(void); asmlinkage irqreturn_t inthandler6(void);
asmlinkage irqreturn_t inthandler7(void); asmlinkage irqreturn_t inthandler7(void);
extern e_vector *_ramvec;
/* The 68k family did not have a good way to determine the source /* The 68k family did not have a good way to determine the source
* of interrupts until later in the family. The EC000 core does * of interrupts until later in the family. The EC000 core does
* not provide the vector number on the stack, we vector everything * not provide the vector number on the stack, we vector everything
......
...@@ -32,8 +32,6 @@ asmlinkage void trap(void); ...@@ -32,8 +32,6 @@ asmlinkage void trap(void);
asmlinkage void bad_interrupt(void); asmlinkage void bad_interrupt(void);
asmlinkage void inthandler(void); asmlinkage void inthandler(void);
extern void *_ramvec[];
static void intc_irq_unmask(struct irq_data *d) static void intc_irq_unmask(struct irq_data *d)
{ {
pquicc->intr_cimr |= (1 << d->irq); pquicc->intr_cimr |= (1 << d->irq);
......
...@@ -33,8 +33,6 @@ asmlinkage void dbginterrupt_c(struct frame *fp) ...@@ -33,8 +33,6 @@ asmlinkage void dbginterrupt_c(struct frame *fp)
/***************************************************************************/ /***************************************************************************/
extern e_vector *_ramvec;
/* Assembler routines */ /* Assembler routines */
asmlinkage void buserr(void); asmlinkage void buserr(void);
asmlinkage void trap(void); asmlinkage void trap(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment