summaryrefslogtreecommitdiff
path: root/xen/arch/riscv/traps.c
blob: ccd3593f5a3cb15a8bcb3a1a7afccfeb92415fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2023 Vates
 *
 * RISC-V Trap handlers
 */
#include <asm/processor.h>
#include <asm/traps.h>

void do_trap(struct cpu_user_regs *cpu_regs)
{
    die();
}