commit 52a2aa11e2768a5d7881377ddb7a053d81e4cff4 (tree)
parent e06cb31659ff5afd1e0b846fbaa852df2f5a0af4
Author: Isaac Freund <mail@isaacfreund.com>
Date: Thu, 24 Feb 2022 10:27:24 +0100
std: work around current packed struct situation
As of 6249a24, align() is not allowed on packed struct fields
and as such the align(4) was removed from the first field of
EdidOverrideProtocolAttributes. The endgame here is packed struct
backed by explicit integers, in this case a u32, but until that
is implemented put the align(4) on the pointer to avoid breaking
someone's UEFI code in a hard to debug way.
Diffstat:
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/lib/std/os/uefi/protocols/edid_override_protocol.zig b/lib/std/os/uefi/protocols/edid_override_protocol.zig
@@ -8,7 +8,15 @@ pub const EdidOverrideProtocol = extern struct {
_get_edid: fn (*const EdidOverrideProtocol, Handle, *u32, *usize, *?[*]u8) callconv(.C) Status,
/// Returns policy information and potentially a replacement EDID for the specified video output device.
- pub fn getEdid(self: *const EdidOverrideProtocol, handle: Handle, attributes: *EdidOverrideProtocolAttributes, edid_size: *usize, edid: *?[*]u8) Status {
+ pub fn getEdid(
+ self: *const EdidOverrideProtocol,
+ handle: Handle,
+ /// The align(4) here should really be part of the EdidOverrideProtocolAttributes type.
+ /// TODO remove this workaround when packed(u32) structs are implemented.
+ attributes: *align(4) EdidOverrideProtocolAttributes,
+ edid_size: *usize,
+ edid: *?[*]u8,
+ ) Status {
return self._get_edid(self, handle, @ptrCast(*u32, attributes), edid_size, edid);
}