浏览代码

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 4 年之前
父节点
当前提交
3d30de1007
共有 1 个文件被更改,包括 1 次插入1 次删除
  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,