Skip to content

Commit

Permalink
uefi-raw: Fix arg type in connect_controller
Browse files Browse the repository at this point in the history
Accidentally left a TODO here, replace with `c_void` with `DevicePathProtocol`.
  • Loading branch information
nicholasbishop committed Jun 18, 2023
1 parent 077256f commit 1ef1da0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions uefi-raw/src/table/boot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ pub struct BootServices {
pub connect_controller: unsafe extern "efiapi" fn(
controller: Handle,
driver_image: Handle,
// TODO
remaining_device_path: *const c_void,
remaining_device_path: *const DevicePathProtocol,
recursive: bool,
) -> Status,
pub disconnect_controller: unsafe extern "efiapi" fn(
Expand Down

0 comments on commit 1ef1da0

Please sign in to comment.