File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ use uefi::proto::media::file::{
13
13
} ;
14
14
use uefi:: proto:: media:: fs:: SimpleFileSystem ;
15
15
use uefi:: proto:: media:: partition:: { MbrOsType , PartitionInfo } ;
16
- use uefi:: table :: runtime:: { Daylight , Time , TimeParams } ;
16
+ use uefi:: runtime:: { Daylight , Time , TimeParams } ;
17
17
18
18
/// Test directory entry iteration.
19
19
fn test_existing_dir ( directory : & mut Directory ) {
Original file line number Diff line number Diff line change 1
1
use uefi:: prelude:: * ;
2
2
use uefi:: proto:: misc:: ResetNotification ;
3
- use uefi:: table :: runtime ;
3
+ use uefi:: runtime :: ResetType ;
4
4
5
5
pub fn test ( bt : & BootServices ) {
6
6
test_reset_notification ( bt) ;
@@ -19,7 +19,7 @@ pub fn test_reset_notification(bt: &BootServices) {
19
19
20
20
// value efi_reset_fn is the type of ResetSystemFn, a function pointer
21
21
unsafe extern "efiapi" fn efi_reset_fn (
22
- rt : runtime :: ResetType ,
22
+ rt : ResetType ,
23
23
status : Status ,
24
24
data_size : usize ,
25
25
data : * const u8 ,
Original file line number Diff line number Diff line change 1
1
use log:: info;
2
2
use uefi:: prelude:: * ;
3
- use uefi:: table :: runtime:: { VariableAttributes , VariableVendor } ;
3
+ use uefi:: runtime:: { VariableAttributes , VariableVendor } ;
4
4
use uefi:: { guid, runtime, CStr16 , Error } ;
5
5
6
6
/// Test variable name.
You can’t perform that action at this time.
0 commit comments