diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-05-25 03:15:31 +0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-08-06 20:55:45 +0400 |
commit | d49e8e7e5a6ebc66906e24d7eed04ae0292fcb12 (patch) | |
tree | 8934ec759e142bc32ca958a076d039dbace7aada /arch/blackfin/kernel | |
parent | 88a0ade952647fa76c70b12f1b2f095712976833 (diff) | |
download | linux-d49e8e7e5a6ebc66906e24d7eed04ae0292fcb12.tar.xz |
Blackfin: use common EXCEPTION_TABLE() in vmlinux.lds
Rather than do our own thing, use what common code provides.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/kernel')
-rw-r--r-- | arch/blackfin/kernel/vmlinux.lds.S | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/blackfin/kernel/vmlinux.lds.S b/arch/blackfin/kernel/vmlinux.lds.S index 984c78172397..4122678529c0 100644 --- a/arch/blackfin/kernel/vmlinux.lds.S +++ b/arch/blackfin/kernel/vmlinux.lds.S @@ -48,15 +48,10 @@ SECTIONS #if !L1_CODE_LENGTH *(.l1.text) #endif - - . = ALIGN(16); - ___start___ex_table = .; - *(__ex_table) - ___stop___ex_table = .; - __etext = .; } + EXCEPTION_TABLE(4) NOTES /* Just in case the first read only is a 32-bit access */ |