summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/mpc55xx/include/esci.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-03-22 06:19:16 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-03-22 07:26:32 +0100
commit3f3f246a24cc165df555b4c6e5676e8c0aa128ba (patch)
tree21a1d8a666f226111a4b6d468a1376937e199056 /c/src/lib/libcpu/powerpc/mpc55xx/include/esci.h
parentbsp/powerpc: Move libcpu timer to bsps (diff)
downloadrtems-3f3f246a24cc165df555b4c6e5676e8c0aa128ba.tar.bz2
bsps/mpc55xx: Remove unused files
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libcpu/powerpc/mpc55xx/include/esci.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/c/src/lib/libcpu/powerpc/mpc55xx/include/esci.h b/c/src/lib/libcpu/powerpc/mpc55xx/include/esci.h
deleted file mode 100644
index 3545296786..0000000000
--- a/c/src/lib/libcpu/powerpc/mpc55xx/include/esci.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * @file
- *
- * @ingroup mpc55xx_esci
- *
- * @brief Header file for the Enhanced Serial Communication Interface (eSCI).
- */
-
-/*
- * Copyright (c) 2008
- * Embedded Brains GmbH
- * Obere Lagerstr. 30
- * D-82178 Puchheim
- * Germany
- * rtems@embedded-brains.de
- *
- * 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.
- */
-
-/**
- * @defgroup mpc55xx_esci Enhanced Serial Communication Interface (eSCI).
- *
- * @ingroup mpc55xx
- */
-
-#ifndef LIBCPU_POWERPC_MPC55XX_ESCI_H
-#define LIBCPU_POWERPC_MPC55XX_ESCI_H
-
-#include <rtems.h>
-#include <rtems/termiostypes.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-#define MPC55XX_ESCI_NUMBER 2
-
-typedef struct {
- volatile struct ESCI_tag *regs;
- struct rtems_termios_tty *tty;
- const char *device_name;
- rtems_vector_number irq_number;
- int transmit_nest_level;
- bool transmit_in_progress;
- bool use_termios;
- bool use_interrupts;
-} mpc55xx_esci_driver_entry;
-
-extern mpc55xx_esci_driver_entry mpc55xx_esci_driver_table [ /* MPC55XX_ESCI_NUMBER */ ];
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* LIBCPU_POWERPC_MPC55XX_ESCI_H */