File tree 2 files changed +2
-13
lines changed
2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ details of the deprecated items that were removed in this release.
5
5
6
6
## Changed
7
7
- ** Breaking:** Deleted the deprecated ` RuntimeServices ` struct.
8
- - ** Breaking:** Deleted deprecated functions ` helpers::system_table ` and
8
+ - ** Breaking:** Deleted deprecated functions ` allocator::init ` ,
9
+ ` allocator::exit_boot_services ` , ` helpers::system_table ` , and
9
10
` table::system_table_runtime ` .
10
11
- ** Breaking:** ` FileSystem ` no longer has a lifetime parameter, and the
11
12
deprecated conversion from ` uefi::table::boot::ScopedProtocol ` has been
Original file line number Diff line number Diff line change @@ -14,18 +14,6 @@ use core::sync::atomic::{AtomicU32, Ordering};
14
14
use crate :: boot;
15
15
use crate :: mem:: memory_map:: MemoryType ;
16
16
use crate :: proto:: loaded_image:: LoadedImage ;
17
- #[ allow( deprecated) ]
18
- use crate :: table:: { Boot , SystemTable } ;
19
-
20
- /// Deprecated; this function is now a no-op.
21
- #[ deprecated = "this function is now a no-op" ]
22
- #[ allow( deprecated, unused_unsafe, clippy:: missing_safety_doc) ]
23
- pub unsafe fn init ( _: & mut SystemTable < Boot > ) { }
24
-
25
- /// Deprecated; this function is now a no-op.
26
- #[ deprecated = "this function is now a no-op" ]
27
- #[ allow( clippy:: missing_const_for_fn) ]
28
- pub fn exit_boot_services ( ) { }
29
17
30
18
/// Get the memory type to use for allocation.
31
19
///
You can’t perform that action at this time.
0 commit comments