summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/bare/include/bsp.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-16 14:15:29 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-16 14:15:29 +0000
commit61a69a567c4ab2a1b36eaec9019df91d641b8486 (patch)
treef983cd6958bce2b41d2acec0157e703fcaa5a3d1 /c/src/lib/libbsp/bare/include/bsp.h
parent2009-10-16 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-61a69a567c4ab2a1b36eaec9019df91d641b8486.tar.bz2
Remove (Abandoned).
Diffstat (limited to 'c/src/lib/libbsp/bare/include/bsp.h')
-rw-r--r--c/src/lib/libbsp/bare/include/bsp.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/c/src/lib/libbsp/bare/include/bsp.h b/c/src/lib/libbsp/bare/include/bsp.h
deleted file mode 100644
index 44146a2b2e..0000000000
--- a/c/src/lib/libbsp/bare/include/bsp.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * This include file contains all board IO definitions.
- *
- * BARE : Allows you to build RTEMS with-out any BSP specific stuff
- *
- * COPYRIGHT (c) 1989-1999.
- * 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.com/license/LICENSE.
- *
- * $Id$
-*/
-
-#ifndef __BARE_BSP_h
-#define __BARE_BSP_h
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <bspopts.h>
-
-#include <rtems.h>
-#include <rtems/console.h>
-#include <rtems/clockdrv.h>
-
-/*
- * Simple spin delay in microsecond units for device drivers.
- * This is very dependent on the clock speed of the target.
- */
-
-#define rtems_bsp_delay( microseconds ) \
- { \
- }
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */