xref: /rk3399_rockchip-uboot/include/rockchip/rkce_error.h (revision d1e7b9e1d9259b6a26a1dc310b724936b8d5e55e)
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