Add a 'place holder' arm struct efi_fb until a real one comes
along. This allows the arm efi boot loader to compile again. Sponsored by: Netflix
This commit is contained in:
parent
868001c943
commit
ab6d04b193
@ -39,4 +39,19 @@ struct efi_map_header {
|
||||
uint32_t descriptor_version;
|
||||
};
|
||||
|
||||
/*
|
||||
* Placeholder for now
|
||||
*/
|
||||
struct efi_fb {
|
||||
uint64_t fb_addr;
|
||||
uint64_t fb_size;
|
||||
uint32_t fb_height;
|
||||
uint32_t fb_width;
|
||||
uint32_t fb_stride;
|
||||
uint32_t fb_mask_red;
|
||||
uint32_t fb_mask_green;
|
||||
uint32_t fb_mask_blue;
|
||||
uint32_t fb_mask_reserved;
|
||||
};
|
||||
|
||||
#endif /* !_MACHINE_METADATA_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user