We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82007aa + e8e4330 commit a462287Copy full SHA for a462287
2 files changed
uefi-raw/CHANGELOG.md
@@ -11,6 +11,7 @@
11
- Added `FormBrowser2Protocol`.
12
13
## Changed
14
+- Switched `*const Self` to `*mut Self` in `SerialIoProtocol::set_attributes()`
15
16
17
# uefi-raw - v0.13.0 (2025-11-05)
uefi-raw/src/protocol/console/serial.rs
@@ -83,7 +83,7 @@ pub struct SerialIoProtocol {
83
pub revision: u32,
84
pub reset: unsafe extern "efiapi" fn(*mut Self) -> Status,
85
pub set_attributes: unsafe extern "efiapi" fn(
86
- *const Self,
+ *mut Self,
87
baud_rate: u64,
88
receive_fifo_depth: u32,
89
timeout: u32,
0 commit comments