summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-05-07 14:28:45 +1000
committerChris Johns <chrisj@rtems.org>2016-05-11 11:45:02 +1000
commitc3fd48d09c40df1240352a107699f8be7bb1a01a (patch)
treea587adf2cd1afac8b43db310f01bc770c99d0dd8 /c
parenti386/pc386: Add x86 debug register support for hardware break points. (diff)
downloadrtems-c3fd48d09c40df1240352a107699f8be7bb1a01a.tar.bz2
i386/pc386: Clean out removed functions.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/i386/shared/irq/irq.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/c/src/lib/libbsp/i386/shared/irq/irq.h b/c/src/lib/libbsp/i386/shared/irq/irq.h
index 953774e0ab..f7e673c8a7 100644
--- a/c/src/lib/libbsp/i386/shared/irq/irq.h
+++ b/c/src/lib/libbsp/i386/shared/irq/irq.h
@@ -87,52 +87,6 @@ extern "C" {
*/
typedef unsigned short rtems_i8259_masks;
-/**
- * @brief Contains the current IMR of both i8259s.
- */
-//extern rtems_i8259_masks i8259s_cache;
-
-/**
- * @brief Contains the super IMR of both i8259s to overrule i8259s_cache during
- * interrupt exit.
- *
- * This enables a bsp_interrupt_vector_disable() in interrupt handlers. This
- * is required for the interrupt server support used by the new network stack.
- */
-//extern rtems_i8259_masks i8259s_super_imr;
-
-/*-------------------------------------------------------------------------+
-| Function Prototypes.
-+--------------------------------------------------------------------------*/
-/*
- * ------------------------ Intel 8259 (or emulation) Mngt Routines -------
- */
-
-/** @brief
- * function to disable a particular irq at 8259 level. After calling
- * this function, even if the device asserts the interrupt line it will
- * not be propagated further to the processor
- */
-//int BSP_irq_disable_at_i8259s (const rtems_irq_number irqLine);
-/** @brief
- * function to enable a particular irq at 8259 level. After calling
- * this function, if the device asserts the interrupt line it will
- * be propagated further to the processor
- */
-//int BSP_irq_enable_at_i8259s (const rtems_irq_number irqLine);
-/** @brief
- * function to acknoledge a particular irq at 8259 level. After calling
- * this function, if a device asserts an enabled interrupt line it will
- * be propagated further to the processor. Mainly usefull for people
- * writting raw handlers as this is automagically done for rtems managed
- * handlers.
- */
-//int BSP_irq_ack_at_i8259s (const rtems_irq_number irqLine);
-/** @brief
- * function to check if a particular irq is enabled at 8259 level. After calling
- */
-//int BSP_irq_enabled_at_i8259s (const rtems_irq_number irqLine);
-
/** @} */
#ifdef __cplusplus