Skip to content

Commit 34eca72

Browse files
authored
Merge pull request #1261 from rust-osdev/bishop-fix-ci
Fix CI for Rust 1.80
2 parents b4c9a82 + 6209b44 commit 34eca72

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

uefi-raw/src/capsule.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub struct CapsuleBlockDescriptor {
1818
/// Either a data block pointer or a continuation pointer.
1919
///
2020
/// * If `length` is non-zero, this is the physical address of the data
21-
/// block.
21+
/// block.
2222
/// * If `length` is zero:
2323
/// * If `addr` is non-zero, this is the physical address of another block
2424
/// of `CapsuleBlockDescriptor`.

uefi/src/table/boot.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1893,6 +1893,7 @@ pub trait MemoryMapMut: MemoryMap {
18931893
}
18941894

18951895
/// Implementation of [`MemoryMap`] for the given buffer.
1896+
#[allow(dead_code)] // TODO: github.com/rust-osdev/uefi-rs/issues/1247
18961897
#[derive(Debug)]
18971898
pub struct MemoryMapRef<'a> {
18981899
buf: &'a [u8],

0 commit comments

Comments
 (0)