1/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (C) 2023 Rivos, Inc */
3
4#include <linux/linkage.h>
5#include <asm/unistd.h>
6
7.text
8SYM_FUNC_START(riscv_hwprobe)
9	.cfi_startproc
10	li a7, __NR_riscv_hwprobe
11	ecall
12	ret
13
14	.cfi_endproc
15SYM_FUNC_END(riscv_hwprobe)
16