summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/leon2/startup/bspidle.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/sparc/leon2/startup/bspidle.c')
-rw-r--r--c/src/lib/libbsp/sparc/leon2/startup/bspidle.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/c/src/lib/libbsp/sparc/leon2/startup/bspidle.c b/c/src/lib/libbsp/sparc/leon2/startup/bspidle.c
deleted file mode 100644
index 8f11f66fb1..0000000000
--- a/c/src/lib/libbsp/sparc/leon2/startup/bspidle.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * @file
- * @ingroup sparc_leon2
- * @brief LEON2 Idle Thread
- */
-
-/*
- * LEON2 Idle Thread with power-down function
- *
- * COPYRIGHT (c) 1989-2009.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- *
- * Ported to LEON implementation of the SPARC by On-Line Applications
- * Research Corporation (OAR) under contract to the European Space
- * Agency (ESA).
- *
- * LEON modifications of respective RTEMS file: COPYRIGHT (c) 1995.
- * European Space Agency.
- */
-
-#include <bsp.h>
-
-void *bsp_idle_thread( uintptr_t ignored )
-{
- while (1) {
- /* make sure on load follows store to power-down reg */
- LEON_REG.Power_Down = LEON_REG.Power_Down;
- }
- return NULL;
-}
-