mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
efi_loader: define all known warning status codes
Of all warning status codes up to now only EFI_WARN_DELETE_FAILURE is defined. The patch adds the missing definitions for later usage. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
a3850e40e1
commit
7b31efc54c
1 changed files with 7 additions and 1 deletions
|
@ -91,7 +91,13 @@ typedef struct {
|
|||
#define EFI_IP_ADDRESS_CONFLICT (EFI_ERROR_MASK | 34)
|
||||
#define EFI_HTTP_ERROR (EFI_ERROR_MASK | 35)
|
||||
|
||||
#define EFI_WARN_DELETE_FAILURE 2
|
||||
#define EFI_WARN_UNKNOWN_GLYPH 1
|
||||
#define EFI_WARN_DELETE_FAILURE 2
|
||||
#define EFI_WARN_WRITE_FAILURE 3
|
||||
#define EFI_WARN_BUFFER_TOO_SMALL 4
|
||||
#define EFI_WARN_STALE_DATA 5
|
||||
#define EFI_WARN_FILE_SYSTEM 6
|
||||
#define EFI_WARN_RESET_REQUIRED 7
|
||||
|
||||
typedef unsigned long efi_status_t;
|
||||
typedef u64 efi_physical_addr_t;
|
||||
|
|
Loading…
Reference in a new issue