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 1717 documentation for details of obligations for callers.
1818- ` BootServices::allocate_pool ` now returns ` NonZero<u8> ` instead of
1919 ` *mut u8 ` .
20+ - ` helpers::system_table ` is deprecated, use ` table::system_table_boot ` instead.
2021
2122## Removed
2223- 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;
4040///
4141/// The returned pointer is only valid until boot services are exited.
4242#[ must_use]
43- // TODO do we want to keep this public?
43+ # [ deprecated ( note = "use uefi::table::system_table_boot instead" ) ]
4444pub fn system_table ( ) -> SystemTable < Boot > {
4545 table:: system_table_boot ( ) . expect ( "boot services are not active" )
4646}
You can’t perform that action at this time.
0 commit comments