Skip to content

Commit f6a5844

Browse files
authored
Merge pull request #862 from nicholasbishop/bishop-fix-todo
uefi-raw: Fix arg type in connect_controller
2 parents 077256f + 1ef1da0 commit f6a5844

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

uefi-raw/src/table/boot.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@ pub struct BootServices {
137137
pub connect_controller: unsafe extern "efiapi" fn(
138138
controller: Handle,
139139
driver_image: Handle,
140-
// TODO
141-
remaining_device_path: *const c_void,
140+
remaining_device_path: *const DevicePathProtocol,
142141
recursive: bool,
143142
) -> Status,
144143
pub disconnect_controller: unsafe extern "efiapi" fn(

0 commit comments

Comments
 (0)