mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
xtensa: fix sign-conversion warning
This commit is contained in:
parent
47253a827a
commit
c3065c00ff
@ -158,12 +158,12 @@ extern unsigned int _xtos_ints_on( unsigned int mask );
|
||||
/* Newer functions to enable/disable the specified interrupt. */
|
||||
static inline void _xtos_interrupt_enable(unsigned int intnum)
|
||||
{
|
||||
_xtos_ints_on(1 << intnum);
|
||||
_xtos_ints_on(1U << intnum);
|
||||
}
|
||||
|
||||
static inline void _xtos_interrupt_disable(unsigned int intnum)
|
||||
{
|
||||
_xtos_ints_off(1 << intnum);
|
||||
_xtos_ints_off(1U << intnum);
|
||||
}
|
||||
|
||||
extern unsigned _xtos_set_intlevel( int intlevel );
|
||||
@ -234,4 +234,3 @@ extern void _xtos_timer_3_delta( int cycles );
|
||||
#endif /* !_ASMLANGUAGE && !__ASSEMBLER__ */
|
||||
|
||||
#endif /* XTRUNTIME_H */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user