Skip to content

Commit 8e5df27

Browse files
committed
uefi: Re-export USB structures from uefi-raw
1 parent 4248ee8 commit 8e5df27

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

uefi/src/proto/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ pub mod shell_params;
3131
pub mod shim;
3232
pub mod string;
3333
pub mod tcg;
34+
pub mod usb;
3435

3536
mod boot_policy;
3637

uefi/src/proto/usb/mod.rs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// SPDX-License-Identifier: MIT OR Apache-2.0
2+
3+
//! USB I/O protocols.
4+
//!
5+
//! These protocols can be used to interact with and configure USB devices.
6+
7+
pub use uefi_raw::protocol::usb::{
8+
AsyncUsbTransferCallback, ConfigDescriptor, DeviceDescriptor, EndpointDescriptor,
9+
InterfaceDescriptor, UsbTransferStatus,
10+
};

0 commit comments

Comments
 (0)