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:
Warner Losh 2017-10-26 16:36:27 +00:00
parent b102a7e856
commit bf8d9a5b94
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=325014

View File

@ -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_ */