Преглед изворни кода

Format code, fix some minor errors and add some doc comments to clarify
the BGRT and return values of orientation offset.

Signed-off-by: Ethin Probst <ethindp@protonmail.com>

Ethin Probst пре 3 година
родитељ
комит
6d1de7a6ac
2 измењених фајлова са 9 додато и 6 уклоњено
  1. 8 5
      acpi/src/bgrt.rs
  2. 1 1
      acpi/src/lib.rs

+ 8 - 5
acpi/src/bgrt.rs

@@ -1,6 +1,8 @@
 use crate::{sdt::SdtHeader, AcpiTable};
 use bit_field::BitField;
 
+/// The BGRT table contains information about a boot graphic that was displayed
+/// by firmware.
 #[repr(C, packed)]
 #[derive(Clone, Copy)]
 pub struct Bgrt {
@@ -23,19 +25,21 @@ impl Bgrt {
     pub fn image_type(&self) -> ImageType {
         let img_type = self.image_type;
         match img_type {
-            1 => ImageType::Bitmap,
+            0 => ImageType::Bitmap,
             _ => ImageType::Reserved,
         }
     }
 
+    /// Gets the orientation offset of the image.
+    /// Degrees are clockwise from the images default orientation.
     pub fn orientation_offset(&self) -> u16 {
         let status = self.status;
-        match status.get_bits(1 .. 3) {
-            0=> 0,
+        match status.get_bits(1..3) {
+            0 => 0,
             1 => 90,
             2 => 180,
             3 => 270,
-            _ => unimplemented!(), // will never happen
+            _ => unreachable!(), // will never happen
         }
     }
 
@@ -57,4 +61,3 @@ pub enum ImageType {
     Bitmap,
     Reserved,
 }
-

+ 1 - 1
acpi/src/lib.rs

@@ -55,13 +55,13 @@ extern crate alloc;
 #[cfg(test)]
 extern crate std;
 
+pub mod bgrt;
 pub mod fadt;
 pub mod hpet;
 pub mod madt;
 pub mod mcfg;
 pub mod platform;
 pub mod sdt;
-pub mod bgrt;
 
 pub use crate::{
     fadt::PowerProfile,