Commit e6110379 authored by Miles Bader's avatar Miles Bader Committed by Linus Torvalds

[PATCH] Force v850 interrupt vector parts into their correct locations

Otherwise a if one them is partially empty, the following input section
can end up in the wrong place.
parent a19f7f45
...@@ -24,9 +24,12 @@ ...@@ -24,9 +24,12 @@
/* Interrupt vectors. */ /* Interrupt vectors. */
#define INTV_CONTENTS \ #define INTV_CONTENTS \
. = ALIGN (0x10) ; \
__intv_start = . ; \ __intv_start = . ; \
*(.intv.reset) /* Reset vector */ \ *(.intv.reset) /* Reset vector */ \
. = __intv_start + 0x10 ; \
*(.intv.common) /* Vectors common to all v850e proc */\ *(.intv.common) /* Vectors common to all v850e proc */\
. = __intv_start + 0x80 ; \
*(.intv.mach) /* Machine-specific int. vectors. */ \ *(.intv.mach) /* Machine-specific int. vectors. */ \
__intv_end = . ; __intv_end = . ;
......
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