authorgravatar for ybham6@gmail.comYusuf Bham <ybham6@gmail.com> 2022-09-09 05:35:32-04:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2022-09-09 16:48:54+03:00
logc9f145a50b11e54b72b2fccd04384bbb856446cf
tree66a18b928514acb6710f7ba0990eaa600909a6d1
parent56b96cd61b0bdb7f5b11a5283fe6dd5b585ef10e

std.os.uefi: mark BlockIoProtocol and EfiBlockMedia as public


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/os/uefi/protocols/block_io_protocol.zig+2-2
......@@ -2,7 +2,7 @@ const std = @import("std");
22const uefi = std.os.uefi;
33const Status = uefi.Status;
44
5const EfiBlockMedia = extern struct {
5pub const EfiBlockMedia = extern struct {
66 /// The current media ID. If the media changes, this value is changed.
77 media_id: u32,
88
......@@ -38,7 +38,7 @@ const EfiBlockMedia = extern struct {
3838 optimal_transfer_length_granularity: u32,
3939};
4040
41const BlockIoProtocol = extern struct {
41pub const BlockIoProtocol = extern struct {
4242 const Self = @This();
4343
4444 revision: u64,