xref: /rk3399_rockchip-uboot/include/rockchip/rkce_error.h (revision 0056558950698852c664324dc1cdc849faed7122)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 
3 /* Copyright (c) 2025 Rockchip Electronics Co., Ltd. */
4 
5 #ifndef __RKCE_ERROR_H__
6 #define __RKCE_ERROR_H__
7 
8 #include <linux/errno.h>
9 
10 #define RKCE_SUCCESS		0
11 #define RKCE_NOMEM		ENOMEM
12 #define RKCE_FAULT		EFAULT
13 #define RKCE_INVAL		EINVAL
14 #define RKCE_TIMEOUT		ETIMEDOUT
15 
16 #endif
17