You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
443 B
23 lines
443 B
/* |
|
* Copyright (c) 2022 Synopsys. |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#ifndef ZEPHYR_ARCH_ARC_INCLUDE_ARC_IRQ_OFFLOAD_H_ |
|
#define ZEPHYR_ARCH_ARC_INCLUDE_ARC_IRQ_OFFLOAD_H_ |
|
|
|
#ifdef CONFIG_IRQ_OFFLOAD |
|
|
|
static inline void arc_irq_offload_init_smp(void) |
|
{ |
|
arch_irq_offload_init(); |
|
} |
|
|
|
#else |
|
|
|
static inline void arc_irq_offload_init_smp(void) {} |
|
|
|
#endif /* CONFIG_IRQ_OFFLOAD */ |
|
|
|
#endif /* ZEPHYR_ARCH_ARC_INCLUDE_ARC_IRQ_OFFLOAD_H_ */
|
|
|