Skip to content
  • Sponsor
  • Notifications You must be signed in to change notification settings
  • Fork 169
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 172a86b

Browse files
committedMar 26, 2025
uefi-raw: Remove unnecessary mutability on ExtScsiPassThruProtocol::reset_target_lun
1 parent c5c6633 commit 172a86b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎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)
Please sign in to comment.