We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 899afef commit 5e94f4dCopy full SHA for 5e94f4d
uefi-raw/src/protocol/scsi.rs
@@ -206,9 +206,9 @@ pub struct ExtScsiPassThruProtocol {
206
target: *mut *const u8,
207
lun: *mut u64,
208
) -> Status,
209
- pub reset_channel: unsafe extern "efiapi" fn(this: *mut Self) -> Status,
+ pub reset_channel: unsafe extern "efiapi" fn(this: *const Self) -> Status,
210
pub reset_target_lun:
211
- unsafe extern "efiapi" fn(this: *mut Self, target: *const u8, lun: u64) -> Status,
+ unsafe extern "efiapi" fn(this: *const Self, target: *const u8, lun: u64) -> Status,
212
pub get_next_target:
213
unsafe extern "efiapi" fn(this: *const Self, target: *mut *mut u8) -> Status,
214
}
0 commit comments