Quellcode durchsuchen

Make the sdt module public

It was pointed out that users can't actually access Signature or anything
else in this module, because it's private. I think this is just an oversight
so we'll make it public.
Isaac Woods vor 4 Jahren
Ursprung
Commit
3d30de1007
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      acpi/src/lib.rs

+ 1 - 1
acpi/src/lib.rs

@@ -51,7 +51,7 @@ mod hpet;
 mod madt;
 mod mcfg;
 pub mod platform;
-mod sdt;
+pub mod sdt;
 
 pub use crate::{
     fadt::PowerProfile,