summaryrefslogtreecommitdiff
path: root/nuttx/arch/avr/include/atmega/irq.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/avr/include/atmega/irq.h')
-rw-r--r--nuttx/arch/avr/include/atmega/irq.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/nuttx/arch/avr/include/atmega/irq.h b/nuttx/arch/avr/include/atmega/irq.h
index ea5b02060..aabf227ee 100644
--- a/nuttx/arch/avr/include/atmega/irq.h
+++ b/nuttx/arch/avr/include/atmega/irq.h
@@ -101,23 +101,6 @@
****************************************************************************/
#ifndef __ASSEMBLY__
-
-/* Save the current interrupt enable state & disable all interrupts */
-
-static inline irqstate_t irqsave(void)
-{
- /* Needs to return the current interrupt state, then disable interrupts */
-#warning "Not implemented"
- return 0
-}
-
-/* Restore saved interrupt state */
-
-static inline void irqrestore(irqstate_t flags)
-{
- /* Based on the provided interrupt flags, conditionally enable interrupts */
-#warning "Not implemented"
-}
#endif /* __ASSEMBLY__ */
/****************************************************************************