diff options
author | Alexey Brodkin <abrodkin@synopsys.com> | 2015-02-24 17:08:44 +0300 |
---|---|---|
committer | Alexey Brodkin <abrodkin@synopsys.com> | 2015-04-03 09:47:49 +0300 |
commit | 8ee28251d95e237302c7c44929e59a813e147622 (patch) | |
tree | 7b5843ebfca7e2842642f546bb08a5ae13bad88a /arch/arc/lib/Makefile | |
parent | 4d93617d87285f01f450a30584520369ff3585d2 (diff) | |
download | u-boot-8ee28251d95e237302c7c44929e59a813e147622.tar.gz |
arc: move low-level interrupt and exception handlers in a separate file
This separation makes maintenance of code easier because those low-level
interrupt- or exception handling routines are pretty static and usually
require not much care while start-up code is a subject of modifications
and enhancements.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'arch/arc/lib/Makefile')
-rw-r--r-- | arch/arc/lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arc/lib/Makefile b/arch/arc/lib/Makefile index ad66ac21e6..b1f1fbe4a1 100644 --- a/arch/arc/lib/Makefile +++ b/arch/arc/lib/Makefile @@ -19,6 +19,7 @@ obj-y += memset.o obj-y += reset.o obj-y += timer.o obj-y += start.o +obj-y += ints_low.o obj-$(CONFIG_CMD_BOOTM) += bootm.o |