File tree 2 files changed +4
-18
lines changed
2 files changed +4
-18
lines changed Original file line number Diff line number Diff line change 1
1
# uefi - [ Unreleased]
2
2
3
+ ## Changed
4
+ - ** Breaking:** Deleted deprecated function ` helpers::system_table ` .
5
+
3
6
4
7
# uefi - 0.32.0 (2024-09-09)
5
8
Original file line number Diff line number Diff line change 18
18
//! [print_macro]: uefi::print!
19
19
//! [println_macro]: uefi::println!
20
20
21
- #[ allow( deprecated) ]
22
- use crate :: prelude:: { Boot , SystemTable } ;
23
- use crate :: { table, Result } ;
21
+ use crate :: Result ;
24
22
#[ doc( hidden) ]
25
23
pub use println:: _print;
26
24
@@ -32,21 +30,6 @@ mod logger;
32
30
mod panic_handler;
33
31
mod println;
34
32
35
- /// Obtains a pointer to the system table.
36
- ///
37
- /// This is meant to be used by higher-level libraries,
38
- /// which want a convenient way to access the system table singleton.
39
- ///
40
- /// `init` must have been called first by the UEFI app.
41
- ///
42
- /// The returned pointer is only valid until boot services are exited.
43
- #[ must_use]
44
- #[ deprecated( note = "use uefi::table::system_table_boot instead" ) ]
45
- #[ allow( deprecated) ]
46
- pub fn system_table ( ) -> SystemTable < Boot > {
47
- table:: system_table_boot ( ) . expect ( "boot services are not active" )
48
- }
49
-
50
33
/// Initialize all helpers defined in [`uefi::helpers`] whose Cargo features
51
34
/// are activated.
52
35
///
You can’t perform that action at this time.
0 commit comments