-
Type:
Bug
-
Resolution: Fixed
-
Priority:
High
-
PDK
-
PDK-13763
-
PROCESSOR_SDK_09.01.00
-
PROCESSOR_SDK_09.02.00
-
Description
osal_hwip_restore() function uses a return in a void function
/**
* \brief Restore interrupts to a previous state held in key.
*
* \param key Value returned from hwip_enable or hwip_disable.
*
* This call is used to restore interrupts to the state previous to a call
* to hwip_enable or hwip_disable when the returned key value is passed.
*/
static inline void osal_hwip_restore(u32 key)
{
return HwiP_restore(key);
}
Resolution Description:
Removed the return keyword from osal_hwip_restore().