From 1ef1da01e3b771a28200a66a07f9666689e007ce Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sun, 18 Jun 2023 12:18:09 -0400 Subject: [PATCH] uefi-raw: Fix arg type in connect_controller Accidentally left a TODO here, replace with `c_void` with `DevicePathProtocol`. --- uefi-raw/src/table/boot.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/uefi-raw/src/table/boot.rs b/uefi-raw/src/table/boot.rs index 734db9ec6..48aba8f75 100644 --- a/uefi-raw/src/table/boot.rs +++ b/uefi-raw/src/table/boot.rs @@ -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(