diff --git a/uefi/CHANGELOG.md b/uefi/CHANGELOG.md index 5ff7b1edf..140b82ac0 100644 --- a/uefi/CHANGELOG.md +++ b/uefi/CHANGELOG.md @@ -5,7 +5,8 @@ details of the deprecated items that were removed in this release. ## Changed - **Breaking:** Deleted the deprecated `RuntimeServices` struct. -- **Breaking:** Deleted deprecated functions `helpers::system_table` and +- **Breaking:** Deleted deprecated functions `allocator::init`, + `allocator::exit_boot_services`, `helpers::system_table`, and `table::system_table_runtime`. - **Breaking:** `FileSystem` no longer has a lifetime parameter, and the deprecated conversion from `uefi::table::boot::ScopedProtocol` has been diff --git a/uefi/src/allocator.rs b/uefi/src/allocator.rs index 3401262ee..3969a3a31 100644 --- a/uefi/src/allocator.rs +++ b/uefi/src/allocator.rs @@ -14,18 +14,6 @@ use core::sync::atomic::{AtomicU32, Ordering}; use crate::boot; use crate::mem::memory_map::MemoryType; use crate::proto::loaded_image::LoadedImage; -#[allow(deprecated)] -use crate::table::{Boot, SystemTable}; - -/// Deprecated; this function is now a no-op. -#[deprecated = "this function is now a no-op"] -#[allow(deprecated, unused_unsafe, clippy::missing_safety_doc)] -pub unsafe fn init(_: &mut SystemTable) {} - -/// Deprecated; this function is now a no-op. -#[deprecated = "this function is now a no-op"] -#[allow(clippy::missing_const_for_fn)] -pub fn exit_boot_services() {} /// Get the memory type to use for allocation. ///