Enable FIQ interrupt handling on BCM mailboxes. Each CPU core has four of them and...
[AROS.git] / arch / arm-native / kernel / unmapglobal.c
bloba6a340e301a3fde3137f1ab9fa91b7a399f7b8a0
1 /*
2 Copyright © 2015, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/kernel.h>
7 #include <aros/libcall.h>
9 #include <kernel_base.h>
10 #include <kernel_intern.h>
12 #include <proto/kernel.h>
14 AROS_LH2I(int, KrnUnmapGlobal,
15 AROS_LHA(void *, virtual, A0),
16 AROS_LHA(uint32_t, length, D0),
17 struct KernelBase *, KernelBase, 17, Kernel)
19 AROS_LIBFUNC_INIT
21 int retval = 0;
23 D(bug("[KRN] KrnMapGlobal(%08x, %08x)\n", virtual, length));
25 return retval;
27 AROS_LIBFUNC_EXIT