Skip to content

Commit f90a0a6

Browse files
uefi: Sort the code in table/mod.rs
1 parent 3f9a5f2 commit f90a0a6

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

uefi/src/table/mod.rs

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
//! Standard UEFI tables.
22
3+
pub mod boot;
4+
pub mod cfg;
5+
pub mod runtime;
6+
7+
mod header;
8+
mod system;
9+
10+
pub use header::Header;
11+
pub use system::{Boot, Runtime, SystemTable};
12+
pub use uefi_raw::table::Revision;
13+
314
/// Common trait implemented by all standard UEFI tables.
415
pub trait Table {
516
/// A unique number assigned by the UEFI specification
617
/// to the standard tables.
718
const SIGNATURE: u64;
819
}
9-
10-
mod header;
11-
pub use header::Header;
12-
13-
mod system;
14-
pub use system::{Boot, Runtime, SystemTable};
15-
16-
pub mod boot;
17-
pub mod runtime;
18-
19-
pub mod cfg;
20-
21-
pub use uefi_raw::table::Revision;

0 commit comments

Comments
 (0)