blob: 2428183d4ecdce9b0464c2fb1da4afeb7dd78442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _IPXE_ERRNO_SBI_H
#define _IPXE_ERRNO_SBI_H
/**
* @file
*
* RISC-V SBI platform error codes
*
* We never need to return SBI error codes ourselves, so we
* arbitrarily choose to use the Linux error codes as platform error
* codes.
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/errno/linux.h>
#endif /* _IPXE_ERRNO_SBI_H */
|