core: irq.h: remove dINT/eINT traces

This commit is contained in:
Kaspar Schleiser 2015-12-14 21:34:35 +01:00
parent 05a572eb58
commit 64674d21d5

View File

@ -31,8 +31,6 @@
/**
* @brief This function sets the IRQ disable bit in the status register
*
* @note This function should be used in favour of dINT().
*
* @return Previous value of status register. The return value should not
* interpreted as a boolean value. The actual value is only
* significant for restoreIRQ().
@ -44,8 +42,6 @@ unsigned disableIRQ(void);
/**
* @brief This function clears the IRQ disable bit in the status register
*
* @note This function should be used in favour of eINT().
*
* @return Previous value of status register. The return value should not
* interpreted as a boolean value. The actual value is only
* significant for restoreIRQ().
@ -60,8 +56,6 @@ unsigned enableIRQ(void);
*
* @param[in] state state to restore
*
* @note This function should be used in favour of eINT().
*
* @see enableIRQ
* @see disableIRQ
*/