mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 14:55:21 +00:00
Move the SoC outside of the architecture tree and put them at the same level as boards and architectures allowing both SoCs and boards to be maintained outside the tree. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
26 lines
311 B
C
26 lines
311 B
C
/*
|
|
* Copyright (c) 2017 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _SOC_IRQ_H
|
|
#define _SOC_IRQ_H
|
|
|
|
#include "board_irq.h"
|
|
|
|
/*
|
|
* This SOC relies on the boards providing all the IRQ support
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SOC_IRQ_H */
|