summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/include/irq-info.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/include/irq-info.h')
-rw-r--r--c/src/lib/libbsp/shared/include/irq-info.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/c/src/lib/libbsp/shared/include/irq-info.h b/c/src/lib/libbsp/shared/include/irq-info.h
deleted file mode 100644
index ea6d629e76..0000000000
--- a/c/src/lib/libbsp/shared/include/irq-info.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * @file
- *
- * @ingroup bsp_interrupt
- *
- * @brief Generic BSP interrupt information API.
- */
-
-/*
- * Copyright (c) 2008, 2009
- * 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.
- */
-
-#ifndef LIBBSP_SHARED_IRQ_INFO_H
-#define LIBBSP_SHARED_IRQ_INFO_H
-
-#include <rtems/shell.h>
-#include <rtems/print.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-/**
- * @brief Prints interrupt information via the printk plugin @a print with the
- * context @a context.
- */
-void bsp_interrupt_report_with_plugin(
- const rtems_printer *printer
-);
-
-/**
- * @brief Prints interrupt information via the default printk plugin.
- */
-void bsp_interrupt_report(void);
-
-/**
- * @brief Shell command entry for interrupt information.
- */
-extern struct rtems_shell_cmd_tt bsp_interrupt_shell_command;
-
-/** @} */
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* LIBBSP_SHARED_IRQ_INFO_H */