File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 19
19
documentation for details of obligations for callers.
20
20
- ` BootServices::allocate_pool ` now returns ` NonZero<u8> ` instead of
21
21
` *mut u8 ` .
22
+ - ` helpers::system_table ` is deprecated, use ` table::system_table_boot ` instead.
22
23
23
24
## Removed
24
25
- Removed the ` panic-on-logger-errors ` feature of the ` uefi ` crate. Logger
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ mod println;
40
40
///
41
41
/// The returned pointer is only valid until boot services are exited.
42
42
#[ must_use]
43
- // TODO do we want to keep this public?
43
+ # [ deprecated ( note = "use uefi::table::system_table_boot instead" ) ]
44
44
pub fn system_table ( ) -> SystemTable < Boot > {
45
45
table:: system_table_boot ( ) . expect ( "boot services are not active" )
46
46
}
You can’t perform that action at this time.
0 commit comments