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

This commit is contained in:
Yusuf Bham 2022-09-09 05:35:32 -04:00 committed by Veikka Tuominen
parent 56b96cd61b
commit c9f145a50b

View File

@ -2,7 +2,7 @@ const std = @import("std");
const uefi = std.os.uefi; const uefi = std.os.uefi;
const Status = uefi.Status; const Status = uefi.Status;
const EfiBlockMedia = extern struct { pub const EfiBlockMedia = extern struct {
/// The current media ID. If the media changes, this value is changed. /// The current media ID. If the media changes, this value is changed.
media_id: u32, media_id: u32,
@ -38,7 +38,7 @@ const EfiBlockMedia = extern struct {
optimal_transfer_length_granularity: u32, optimal_transfer_length_granularity: u32,
}; };
const BlockIoProtocol = extern struct { pub const BlockIoProtocol = extern struct {
const Self = @This(); const Self = @This();
revision: u64, revision: u64,