1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. 4 */ 5 6 #ifndef SYSREGS_H 7 #define SYSREGS_H 8 9 struct rec; 10 struct rmi_rec_exit; 11 12 bool handle_sysreg_access_trap(struct rec *rec, struct rmi_rec_exit *rec_exit, 13 unsigned long esr); 14 15 #endif /* SYSREGS_H */ 16