Skip to content

Commit 78a3581

Browse files
committed
uefi-raw: Remove unnecessary mutability on ExtScsiPassThruProtocol::reset_target_lun
1 parent 6ab3d14 commit 78a3581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uefi-raw/src/protocol/scsi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ pub struct ExtScsiPassThruProtocol {
208208
) -> Status,
209209
pub reset_channel: unsafe extern "efiapi" fn(this: *mut Self) -> Status,
210210
pub reset_target_lun:
211-
unsafe extern "efiapi" fn(this: *mut Self, target: *const u8, lun: u64) -> Status,
211+
unsafe extern "efiapi" fn(this: *const Self, target: *const u8, lun: u64) -> Status,
212212
pub get_next_target:
213213
unsafe extern "efiapi" fn(this: *const Self, target: *mut *mut u8) -> Status,
214214
}

0 commit comments

Comments
 (0)