summaryrefslogtreecommitdiffstats
path: root/bsps/shared/dev/getentropy
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/shared/dev/getentropy
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/shared/dev/getentropy')
-rw-r--r--bsps/shared/dev/getentropy/getentropy-cpucounter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsps/shared/dev/getentropy/getentropy-cpucounter.c b/bsps/shared/dev/getentropy/getentropy-cpucounter.c
index 8ef05df85c..218db8d766 100644
--- a/bsps/shared/dev/getentropy/getentropy-cpucounter.c
+++ b/bsps/shared/dev/getentropy/getentropy-cpucounter.c
@@ -65,5 +65,5 @@ static void getentropy_init(void)
RTEMS_SYSINIT_ITEM(
getentropy_init,
RTEMS_SYSINIT_DEVICE_DRIVERS,
- RTEMS_SYSINIT_ORDER_LAST
+ RTEMS_SYSINIT_ORDER_LAST_BUT_5
);