mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-02-05 18:40:21 +00:00
Add missing semicolon (#1750)
This commit is contained in:
parent
73e719691d
commit
778221ba99
@ -206,7 +206,7 @@ static inline int8_t get_slot_index(struct irq_handler_chain_slot *slot) {
|
|||||||
void irq_add_shared_handler(uint num, irq_handler_t handler, uint8_t order_priority) {
|
void irq_add_shared_handler(uint num, irq_handler_t handler, uint8_t order_priority) {
|
||||||
check_irq_param(num);
|
check_irq_param(num);
|
||||||
#if PICO_NO_RAM_VECTOR_TABLE
|
#if PICO_NO_RAM_VECTOR_TABLE
|
||||||
panic_unsupported()
|
panic_unsupported();
|
||||||
#elif PICO_DISABLE_SHARED_IRQ_HANDLERS
|
#elif PICO_DISABLE_SHARED_IRQ_HANDLERS
|
||||||
irq_set_exclusive_handler(num, handler);
|
irq_set_exclusive_handler(num, handler);
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user