efi/gop: Add prototypes for query_mode and set_mode
Add prototypes and argmap for the Graphics Output Protocol's QueryMode and SetMode functions. Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu> Link: https://lore.kernel.org/r/20200320020028.1936003-11-nivedita@alum.mit.edu Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
Родитель
d49fd4bbf9
Коммит
b4b89a0272
|
@ -307,6 +307,10 @@ static inline u32 efi64_convert_status(efi_status_t status)
|
|||
#define __efi64_argmap_load_file(protocol, path, policy, bufsize, buf) \
|
||||
((protocol), (path), (policy), efi64_zero_upper(bufsize), (buf))
|
||||
|
||||
/* Graphics Output Protocol */
|
||||
#define __efi64_argmap_query_mode(gop, mode, size, info) \
|
||||
((gop), (mode), efi64_zero_upper(size), efi64_zero_upper(info))
|
||||
|
||||
/*
|
||||
* The macros below handle the plumbing for the argument mapping. To add a
|
||||
* mapping for a specific EFI method, simply define a macro
|
||||
|
|
|
@ -314,8 +314,10 @@ typedef union efi_graphics_output_protocol efi_graphics_output_protocol_t;
|
|||
|
||||
union efi_graphics_output_protocol {
|
||||
struct {
|
||||
void *query_mode;
|
||||
void *set_mode;
|
||||
efi_status_t (__efiapi *query_mode)(efi_graphics_output_protocol_t *,
|
||||
u32, unsigned long *,
|
||||
efi_graphics_output_mode_info_t **);
|
||||
efi_status_t (__efiapi *set_mode) (efi_graphics_output_protocol_t *, u32);
|
||||
void *blt;
|
||||
efi_graphics_output_protocol_mode_t *mode;
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче