summaryrefslogtreecommitdiffstats
path: root/cpukit/libdrvmgr/drvmgr_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libdrvmgr/drvmgr_init.c')
-rw-r--r--cpukit/libdrvmgr/drvmgr_init.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/cpukit/libdrvmgr/drvmgr_init.c b/cpukit/libdrvmgr/drvmgr_init.c
new file mode 100644
index 0000000000..b8a738fee2
--- /dev/null
+++ b/cpukit/libdrvmgr/drvmgr_init.c
@@ -0,0 +1,26 @@
+/* Driver Manager Initialization
+ *
+ * COPYRIGHT (c) 2009.
+ * Cobham Gaisler AB.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#include <drvmgr/drvmgr.h>
+
+/* Init driver manager - all in one go. Typically called from Init task when
+ * user wants to initilize driver manager after startup, otherwise not used.
+ */
+int drvmgr_init(void)
+{
+ int level;
+
+ _DRV_Manager_initialization();
+
+ for (level = 1; level <= DRVMGR_LEVEL_MAX; level++)
+ _DRV_Manager_init_level(level);
+
+ return 0;
+}