summaryrefslogtreecommitdiffstats
path: root/bsps/arm/xilinx-zynq
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-02-02 11:00:54 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-02-04 06:06:42 +0100
commitc344e5828c3e8447a6164402f5786c8b0fbfb6a2 (patch)
treeef1772f2981872b0b5162e79dfaab01b45521aac /bsps/arm/xilinx-zynq
parentsysinit: Add RTEMS_SYSINIT_ORDER_LAST_BUT_[1-9] (diff)
downloadrtems-c344e5828c3e8447a6164402f5786c8b0fbfb6a2.tar.bz2
Use RTEMS_SYSINIT_ORDER_LAST_BUT_5
Use RTEMS_SYSINIT_ORDER_LAST_BUT_5 instead of RTEMS_SYSINIT_ORDER_LAST to allow applications and support functions to place system initialization handlers behind the standard handlers. Update #3838.
Diffstat (limited to 'bsps/arm/xilinx-zynq')
-rw-r--r--bsps/arm/xilinx-zynq/console/debug-console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsps/arm/xilinx-zynq/console/debug-console.c b/bsps/arm/xilinx-zynq/console/debug-console.c
index 3b1e1e212b..809fd6830d 100644
--- a/bsps/arm/xilinx-zynq/console/debug-console.c
+++ b/bsps/arm/xilinx-zynq/console/debug-console.c
@@ -74,5 +74,5 @@ BSP_polling_getchar_function_type BSP_poll_char = zynq_debug_console_in;
RTEMS_SYSINIT_ITEM(
zynq_debug_console_init,
RTEMS_SYSINIT_BSP_START,
- RTEMS_SYSINIT_ORDER_LAST
+ RTEMS_SYSINIT_ORDER_LAST_BUT_5
);