summaryrefslogtreecommitdiffstats
path: root/bsps/x86_64/amd64/start/bspstart.c
diff options
context:
space:
mode:
authorAmaan Cheval <amaan.cheval@gmail.com>2018-08-13 16:20:38 +0530
committerJoel Sherrill <joel@rtems.org>2018-08-13 10:48:20 -0500
commit686932125dd249a237bcb6d2f0ddb9f2ff1ce1b3 (patch)
treea83e550123771683c0bb6a77496abfe10729b36c /bsps/x86_64/amd64/start/bspstart.c
parentbsps/x86_64: Add paging support with 1GiB super pages (diff)
downloadrtems-686932125dd249a237bcb6d2f0ddb9f2ff1ce1b3.tar.bz2
bsps/x86_64: Add support for RTEMS interrupts
Updates #2898.
Diffstat (limited to 'bsps/x86_64/amd64/start/bspstart.c')
-rw-r--r--bsps/x86_64/amd64/start/bspstart.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bsps/x86_64/amd64/start/bspstart.c b/bsps/x86_64/amd64/start/bspstart.c
index 5a5b46bcec..d1e1e4b2f2 100644
--- a/bsps/x86_64/amd64/start/bspstart.c
+++ b/bsps/x86_64/amd64/start/bspstart.c
@@ -27,8 +27,10 @@
#include <bsp.h>
#include <bsp/bootcard.h>
#include <libcpu/page.h>
+#include <bsp/irq-generic.h>
void bsp_start(void)
{
paging_init();
+ bsp_interrupt_initialize();
}