mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-05-14 18:56:01 +00:00
Include the common IRQ header rather than the arch-specific version. This follows the style we defined for multi-arch development. Remaining RISC-V related files will be updated in later patches when integration with the common IRQ framework is implemented. Tracked-On: #8845 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Wang Yu1 <yu1.wang@intel.com>
14 lines
315 B
C
14 lines
315 B
C
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <types.h>
|
|
#include <irq.h>
|
|
|
|
struct intr_excp_ctx;
|
|
|
|
void dump_intr_excp_frame(__unused const struct intr_excp_ctx *ctx) {}
|
|
void dump_exception(__unused struct intr_excp_ctx *ctx, __unused uint16_t pcpu_id) {}
|