Răsfoiți Sursa

Rust edition 2018 + formatting + clippy (#84)

* Rust edition 2018 + formatting (closes #83)

* fix imports in tests

* fixed future compiler error in tests

* clippy code quality improvements

* removed unused impl of non-public struct
Philipp Schuster 3 ani în urmă
părinte
comite
12ae262731
9 a modificat fișierele cu 155 adăugiri și 164 ștergeri
  1. 1 0
      Cargo.toml
  2. 4 4
      src/elf_sections.rs
  3. 3 3
      src/framebuffer.rs
  4. 5 18
      src/header.rs
  5. 110 109
      src/lib.rs
  6. 2 2
      src/memory_map.rs
  7. 4 4
      src/module.rs
  8. 4 4
      src/rsdp.rs
  9. 22 20
      src/vbe_info.rs

+ 1 - 0
Cargo.toml

@@ -5,6 +5,7 @@ authors = ["Philipp Oppermann <dev@phil-opp.com>", "Calvin Lee <cyrus296@gmail.c
 license = "MIT/Apache-2.0"
 description = "An experimental Multiboot 2 crate for ELF-64/32 kernels."
 repository = "https://github.com/rust-osdev/multiboot2-elf64"
+edition = "2018"
 
 [dependencies]
 bitflags = "1"

+ 4 - 4
src/elf_sections.rs

@@ -1,5 +1,5 @@
-use header::Tag;
-use core::fmt::{Formatter, Debug};
+use crate::header::Tag;
+use core::fmt::{Debug, Formatter};
 
 /// This tag contains section header table from an ELF kernel.
 ///
@@ -114,7 +114,7 @@ impl Default for ElfSectionIter {
             remaining_sections: 0,
             entry_size: 0,
             string_section: core::ptr::null(),
-            offset: 0
+            offset: 0,
         }
     }
 }
@@ -318,7 +318,7 @@ impl ElfSectionInner for ElfSectionInner64 {
     }
 
     fn addralign(&self) -> u64 {
-        self.addralign.into()
+        self.addralign
     }
 }
 

+ 3 - 3
src/framebuffer.rs

@@ -1,6 +1,6 @@
+use crate::header::Tag;
+use crate::Reader;
 use core::slice;
-use header::Tag;
-use Reader;
 
 /// The VBE Framebuffer information Tag.
 #[derive(Debug, PartialEq)]
@@ -78,7 +78,7 @@ pub struct FramebufferColor {
     pub blue: u8,
 }
 
-pub fn framebuffer_tag<'a>(tag: &'a Tag) -> FramebufferTag<'a> {
+pub fn framebuffer_tag(tag: &Tag) -> FramebufferTag {
     let mut reader = Reader::new(tag as *const Tag);
     reader.skip(8);
     let address = reader.read_u64();

+ 5 - 18
src/header.rs

@@ -1,6 +1,5 @@
-use core::marker::PhantomData;
 use core::fmt::{Debug, Formatter};
-use core::cmp::Ordering;
+use core::marker::PhantomData;
 
 /// Magic number that a multiboot2-compliant boot loader will store in `eax` register
 /// right before handoff to the payload (the kernel). This value can be used to check,
@@ -63,21 +62,6 @@ impl PartialEq<TagType> for TagType {
     }
 }
 
-impl PartialOrd<u32> for TagType {
-    fn partial_cmp(&self, other: &u32) -> Option<Ordering> {
-        let num = *self as u32;
-        Some(
-            if num < *other {
-                Ordering::Less
-            } else if num == *other {
-                Ordering::Equal
-            } else {
-                Ordering::Greater
-            }
-        )
-    }
-}
-
 /// All tags that could passed via the Multiboot2 information structure to a payload/program/kernel.
 /// Better not confuse this with the Multiboot2 header tags. They are something different.
 #[derive(Clone, Copy)]
@@ -119,7 +103,10 @@ impl<'a> Iterator for TagIter<'a> {
 
     fn next(&mut self) -> Option<&'a Tag> {
         match unsafe { &*self.current } {
-            &Tag { typ: TagType::End, size: 8 } => None, // end tag
+            &Tag {
+                typ: TagType::End,
+                size: 8,
+            } => None, // end tag
             tag => {
                 // go to next tag
                 let mut tag_addr = self.current as usize;

+ 110 - 109
src/lib.rs

@@ -16,8 +16,8 @@ pub use elf_sections::{
     ElfSection, ElfSectionFlags, ElfSectionIter, ElfSectionType, ElfSectionsTag,
 };
 pub use framebuffer::{FramebufferColor, FramebufferField, FramebufferTag, FramebufferType};
-use header::{Tag, TagIter, TagType};
 pub use header::MB2_MAGIC;
+use header::{Tag, TagIter, TagType};
 pub use memory_map::{
     EFIMemoryAreaType, EFIMemoryDesc, EFIMemoryMapTag, MemoryArea, MemoryAreaIter, MemoryAreaType,
     MemoryMapTag,
@@ -91,7 +91,7 @@ pub unsafe fn load_with_offset(address: usize, offset: usize) -> BootInformation
     assert!(multiboot.has_valid_end_tag());
     BootInformation {
         inner: multiboot,
-        offset: offset,
+        offset,
     }
 }
 
@@ -137,7 +137,7 @@ impl BootInformation {
     }
 
     /// Search for the Memory map tag.
-    pub fn memory_map_tag<'a>(&'a self) -> Option<&'a MemoryMapTag> {
+    pub fn memory_map_tag(&self) -> Option<&MemoryMapTag> {
         self.get_tag(TagType::Mmap)
             .map(|tag| unsafe { &*(tag as *const Tag as *const MemoryMapTag) })
     }
@@ -148,48 +148,49 @@ impl BootInformation {
     }
 
     /// Search for the BootLoader name tag.
-    pub fn boot_loader_name_tag<'a>(&'a self) -> Option<&'a BootLoaderNameTag> {
+    pub fn boot_loader_name_tag(&self) -> Option<&BootLoaderNameTag> {
         self.get_tag(TagType::BootLoaderName)
             .map(|tag| unsafe { &*(tag as *const Tag as *const BootLoaderNameTag) })
     }
 
     /// Search for the Command line tag.
-    pub fn command_line_tag<'a>(&'a self) -> Option<&'a CommandLineTag> {
+    pub fn command_line_tag(&self) -> Option<&CommandLineTag> {
         self.get_tag(TagType::Cmdline)
             .map(|tag| unsafe { &*(tag as *const Tag as *const CommandLineTag) })
     }
 
     /// Search for the VBE framebuffer tag.
-    pub fn framebuffer_tag<'a>(&'a self) -> Option<FramebufferTag<'a>> {
-        self.get_tag(TagType::Framebuffer).map(|tag| framebuffer::framebuffer_tag(tag))
+    pub fn framebuffer_tag(&self) -> Option<FramebufferTag> {
+        self.get_tag(TagType::Framebuffer)
+            .map(|tag| framebuffer::framebuffer_tag(tag))
     }
 
     /// Search for the EFI 32-bit SDT tag.
-    pub fn efi_sdt_32_tag<'a>(&self) -> Option<&'a EFISdt32> {
+    pub fn efi_sdt_32_tag(&self) -> Option<&EFISdt32> {
         self.get_tag(TagType::Efi32)
             .map(|tag| unsafe { &*(tag as *const Tag as *const EFISdt32) })
     }
 
     /// Search for the EFI 64-bit SDT tag.
-    pub fn efi_sdt_64_tag<'a>(&self) -> Option<&'a EFISdt64> {
+    pub fn efi_sdt_64_tag(&self) -> Option<&EFISdt64> {
         self.get_tag(TagType::Efi64)
             .map(|tag| unsafe { &*(tag as *const Tag as *const EFISdt64) })
     }
 
     /// Search for the (ACPI 1.0) RSDP tag.
-    pub fn rsdp_v1_tag<'a>(&self) -> Option<&'a RsdpV1Tag> {
+    pub fn rsdp_v1_tag(&self) -> Option<&RsdpV1Tag> {
         self.get_tag(TagType::AcpiV1)
             .map(|tag| unsafe { &*(tag as *const Tag as *const RsdpV1Tag) })
     }
 
     /// Search for the (ACPI 2.0 or later) RSDP tag.
-    pub fn rsdp_v2_tag<'a>(&'a self) -> Option<&'a RsdpV2Tag> {
+    pub fn rsdp_v2_tag(&self) -> Option<&RsdpV2Tag> {
         self.get_tag(TagType::AcpiV2)
             .map(|tag| unsafe { &*(tag as *const Tag as *const RsdpV2Tag) })
     }
 
     /// Search for the EFI Memory map tag.
-    pub fn efi_memory_map_tag<'a>(&'a self) -> Option<&'a EFIMemoryMapTag> {
+    pub fn efi_memory_map_tag(&self) -> Option<&EFIMemoryMapTag> {
         // If the EFIBootServicesNotExited is present, then we should not use
         // the memory map, as it could still be in use.
         match self.get_tag(TagType::EfiBs) {
@@ -201,19 +202,19 @@ impl BootInformation {
     }
 
     /// Search for the EFI 32-bit image handle pointer.
-    pub fn efi_32_ih<'a>(&'a self) -> Option<&'a EFIImageHandle32> {
+    pub fn efi_32_ih(&self) -> Option<&EFIImageHandle32> {
         self.get_tag(TagType::Efi32Ih)
             .map(|tag| unsafe { &*(tag as *const Tag as *const EFIImageHandle32) })
     }
 
     /// Search for the EFI 64-bit image handle pointer.
-    pub fn efi_64_ih<'a>(&'a self) -> Option<&'a EFIImageHandle64> {
+    pub fn efi_64_ih(&self) -> Option<&EFIImageHandle64> {
         self.get_tag(TagType::Efi64Ih)
             .map(|tag| unsafe { &*(tag as *const Tag as *const EFIImageHandle64) })
     }
 
     /// Search for the Image Load Base Physical Address.
-    pub fn load_base_addr<'a>(&'a self) -> Option<&'a ImageLoadPhysAddr> {
+    pub fn load_base_addr(&self) -> Option<&ImageLoadPhysAddr> {
         self.get_tag(TagType::LoadBaseAddr)
             .map(|tag| unsafe { &*(tag as *const Tag as *const ImageLoadPhysAddr) })
     }
@@ -228,7 +229,7 @@ impl BootInformation {
         unsafe { &*self.inner }
     }
 
-    fn get_tag<'a>(&'a self, typ: TagType) -> Option<&'a Tag> {
+    fn get_tag(&self, typ: TagType) -> Option<&Tag> {
         self.tags().find(|tag| tag.typ == typ)
     }
 
@@ -239,7 +240,10 @@ impl BootInformation {
 
 impl BootInformationInner {
     fn has_valid_end_tag(&self) -> bool {
-        const END_TAG: Tag = Tag { typ: TagType::End, size: 8 };
+        const END_TAG: Tag = Tag {
+            typ: TagType::End,
+            size: 8,
+        };
 
         let self_ptr = self as *const _;
         let end_tag_addr = self_ptr as usize + (self.total_size - END_TAG.size) as usize;
@@ -257,7 +261,8 @@ impl fmt::Debug for BootInformation {
         const ELF_SECTIONS_LIMIT: usize = 17;
 
         let mut debug = f.debug_struct("Multiboot2 Boot Information");
-        debug.field("start_address", &(self.start_address() as *const u64))
+        debug
+            .field("start_address", &(self.start_address() as *const u64))
             .field("end_address", &(self.end_address() as *const u64))
             .field("total_size", &(self.total_size() as *const u64))
             .field(
@@ -278,15 +283,15 @@ impl fmt::Debug for BootInformation {
             // so far, I didn't found a nice way to connect the iterator with ".field()" because
             // the iterator isn't Debug
             .field("module_tags", &self.module_tags());
-            // usually this is REALLY big (thousands of tags) => skip it here
+        // usually this is REALLY big (thousands of tags) => skip it here
 
-        let elf_sections_tag_entries_count = self.elf_sections_tag().map(|x| x.sections().count()).unwrap_or(0);
+        let elf_sections_tag_entries_count = self
+            .elf_sections_tag()
+            .map(|x| x.sections().count())
+            .unwrap_or(0);
 
         if elf_sections_tag_entries_count > ELF_SECTIONS_LIMIT {
-            debug.field(
-                "elf_sections_tags (count)",
-                &elf_sections_tag_entries_count,
-            );
+            debug.field("elf_sections_tags (count)", &elf_sections_tag_entries_count);
         } else {
             debug.field(
                 "elf_sections_tags",
@@ -322,7 +327,7 @@ impl Reader {
 
     pub(crate) fn read_u8(&mut self) -> u8 {
         self.off += 1;
-        unsafe { core::ptr::read(self.ptr.offset((self.off - 1) as isize)) }
+        unsafe { core::ptr::read(self.ptr.add(self.off - 1)) }
     }
 
     pub(crate) fn read_u16(&mut self) -> u16 {
@@ -342,16 +347,13 @@ impl Reader {
     }
 
     pub(crate) fn current_address(&self) -> usize {
-        unsafe { self.ptr.offset(self.off as isize) as usize }
+        unsafe { self.ptr.add(self.off) as usize }
     }
 }
 
 #[cfg(test)]
 mod tests {
-    use super::FramebufferType;
-    use super::MemoryAreaType;
-    use super::{load, load_with_offset};
-    use super::{BootInformation, ElfSectionFlags, ElfSectionType};
+    use super::*;
 
     #[test]
     fn no_tags() {
@@ -664,85 +666,84 @@ mod tests {
         assert!(bi.vbe_info_tag().is_some());
         let vbe = bi.vbe_info_tag().unwrap();
         use vbe_info::*;
-        unsafe {
-            assert_eq!(vbe.mode, 16762);
-            assert_eq!(vbe.interface_segment, 65535);
-            assert_eq!(vbe.interface_offset, 24576);
-            assert_eq!(vbe.interface_length, 79);
-            assert_eq!(vbe.control_info.signature, [86, 69, 83, 65]);
-            assert_eq!(vbe.control_info.version, 768);
-            assert_eq!(vbe.control_info.oem_string_ptr, 3221247964);
-            assert_eq!(
-                vbe.control_info.capabilities,
-                VBECapabilities::SWITCHABLE_DAC
-            );
-            assert_eq!(vbe.control_info.mode_list_ptr, 1610645538);
-            assert_eq!(vbe.control_info.total_memory, 256);
-            assert_eq!(vbe.control_info.oem_software_revision, 0);
-            assert_eq!(vbe.control_info.oem_vendor_name_ptr, 3221247984);
-            assert_eq!(vbe.control_info.oem_product_name_ptr, 3221248003);
-            assert_eq!(vbe.control_info.oem_product_revision_ptr, 3221248023);
-            assert!(vbe.mode_info.mode_attributes.contains(
-                VBEModeAttributes::SUPPORTED
-                    | VBEModeAttributes::COLOR
-                    | VBEModeAttributes::GRAPHICS
-                    | VBEModeAttributes::NOT_VGA_COMPATIBLE
-                    | VBEModeAttributes::LINEAR_FRAMEBUFFER
-            ));
-            assert!(vbe.mode_info.window_a_attributes.contains(
-                VBEWindowAttributes::RELOCATABLE
-                    | VBEWindowAttributes::READABLE
-                    | VBEWindowAttributes::WRITEABLE
-            ));
-            assert_eq!(vbe.mode_info.window_granularity, 64);
-            assert_eq!(vbe.mode_info.window_size, 64);
-            assert_eq!(vbe.mode_info.window_a_segment, 40960);
-            assert_eq!(vbe.mode_info.window_function_ptr, 3221247162);
-            assert_eq!(vbe.mode_info.pitch, 5120);
-            assert_eq!(vbe.mode_info.resolution, (1280, 800));
-            assert_eq!(vbe.mode_info.character_size, (8, 16));
-            assert_eq!(vbe.mode_info.number_of_planes, 1);
-            assert_eq!(vbe.mode_info.bpp, 32);
-            assert_eq!(vbe.mode_info.number_of_banks, 1);
-            assert_eq!(vbe.mode_info.memory_model, VBEMemoryModel::DirectColor);
-            assert_eq!(vbe.mode_info.bank_size, 0);
-            assert_eq!(vbe.mode_info.number_of_image_pages, 3);
-            assert_eq!(
-                vbe.mode_info.red_field,
-                VBEField {
-                    position: 16,
-                    size: 8
-                }
-            );
-            assert_eq!(
-                vbe.mode_info.green_field,
-                VBEField {
-                    position: 8,
-                    size: 8
-                }
-            );
-            assert_eq!(
-                vbe.mode_info.blue_field,
-                VBEField {
-                    position: 0,
-                    size: 8
-                }
-            );
-            assert_eq!(
-                vbe.mode_info.reserved_field,
-                VBEField {
-                    position: 24,
-                    size: 8
-                }
-            );
-            assert_eq!(
-                vbe.mode_info.direct_color_attributes,
-                VBEDirectColorAttributes::RESERVED_USABLE
-            );
-            assert_eq!(vbe.mode_info.framebuffer_base_ptr, 4244635648);
-            assert_eq!(vbe.mode_info.offscreen_memory_offset, 0);
-            assert_eq!(vbe.mode_info.offscreen_memory_size, 0);
-        }
+
+        assert_eq!({ vbe.mode }, 16762);
+        assert_eq!({ vbe.interface_segment }, 65535);
+        assert_eq!({ vbe.interface_offset }, 24576);
+        assert_eq!({ vbe.interface_length }, 79);
+        assert_eq!({ vbe.control_info.signature }, [86, 69, 83, 65]);
+        assert_eq!({ vbe.control_info.version }, 768);
+        assert_eq!({ vbe.control_info.oem_string_ptr }, 3221247964);
+        assert_eq!(
+            { vbe.control_info.capabilities },
+            VBECapabilities::SWITCHABLE_DAC
+        );
+        assert_eq!({ vbe.control_info.mode_list_ptr }, 1610645538);
+        assert_eq!({ vbe.control_info.total_memory }, 256);
+        assert_eq!({ vbe.control_info.oem_software_revision }, 0);
+        assert_eq!({ vbe.control_info.oem_vendor_name_ptr }, 3221247984);
+        assert_eq!({ vbe.control_info.oem_product_name_ptr }, 3221248003);
+        assert_eq!({ vbe.control_info.oem_product_revision_ptr }, 3221248023);
+        assert!({ vbe.mode_info.mode_attributes }.contains(
+            VBEModeAttributes::SUPPORTED
+                | VBEModeAttributes::COLOR
+                | VBEModeAttributes::GRAPHICS
+                | VBEModeAttributes::NOT_VGA_COMPATIBLE
+                | VBEModeAttributes::LINEAR_FRAMEBUFFER
+        ));
+        assert!(vbe.mode_info.window_a_attributes.contains(
+            VBEWindowAttributes::RELOCATABLE
+                | VBEWindowAttributes::READABLE
+                | VBEWindowAttributes::WRITEABLE
+        ));
+        assert_eq!({ vbe.mode_info.window_granularity }, 64);
+        assert_eq!({ vbe.mode_info.window_size }, 64);
+        assert_eq!({ vbe.mode_info.window_a_segment }, 40960);
+        assert_eq!({ vbe.mode_info.window_function_ptr }, 3221247162);
+        assert_eq!({ vbe.mode_info.pitch }, 5120);
+        assert_eq!({ vbe.mode_info.resolution }, (1280, 800));
+        assert_eq!(vbe.mode_info.character_size, (8, 16));
+        assert_eq!(vbe.mode_info.number_of_planes, 1);
+        assert_eq!(vbe.mode_info.bpp, 32);
+        assert_eq!(vbe.mode_info.number_of_banks, 1);
+        assert_eq!(vbe.mode_info.memory_model, VBEMemoryModel::DirectColor);
+        assert_eq!(vbe.mode_info.bank_size, 0);
+        assert_eq!(vbe.mode_info.number_of_image_pages, 3);
+        assert_eq!(
+            vbe.mode_info.red_field,
+            VBEField {
+                position: 16,
+                size: 8
+            }
+        );
+        assert_eq!(
+            vbe.mode_info.green_field,
+            VBEField {
+                position: 8,
+                size: 8
+            }
+        );
+        assert_eq!(
+            vbe.mode_info.blue_field,
+            VBEField {
+                position: 0,
+                size: 8
+            }
+        );
+        assert_eq!(
+            vbe.mode_info.reserved_field,
+            VBEField {
+                position: 24,
+                size: 8
+            }
+        );
+        assert_eq!(
+            vbe.mode_info.direct_color_attributes,
+            VBEDirectColorAttributes::RESERVED_USABLE
+        );
+        assert_eq!({ vbe.mode_info.framebuffer_base_ptr }, 4244635648);
+        assert_eq!({ vbe.mode_info.offscreen_memory_offset }, 0);
+        assert_eq!({ vbe.mode_info.offscreen_memory_size }, 0);
     }
 
     #[test]

+ 2 - 2
src/memory_map.rs

@@ -112,7 +112,7 @@ impl<'a> Iterator for MemoryAreaIter<'a> {
             None
         } else {
             let area = unsafe { &*(self.current_area as *const MemoryArea) };
-            self.current_area = self.current_area + (self.entry_size as u64);
+            self.current_area += self.entry_size as u64;
             Some(area)
         }
     }
@@ -276,7 +276,7 @@ impl<'a> Iterator for EFIMemoryAreaIter<'a> {
             None
         } else {
             let area = unsafe { &*(self.current_area as *const EFIMemoryDesc) };
-            self.current_area = self.current_area + (self.entry_size as u64);
+            self.current_area += self.entry_size as u64;
             Some(area)
         }
     }

+ 4 - 4
src/module.rs

@@ -1,5 +1,5 @@
-use header::{Tag, TagIter, TagType};
-use core::fmt::{Formatter, Debug};
+use crate::header::{Tag, TagIter, TagType};
+use core::fmt::{Debug, Formatter};
 
 /// This tag indicates to the kernel what boot module was loaded along with
 /// the kernel image, and where it can be found.
@@ -38,7 +38,7 @@ impl ModuleTag {
 }
 
 pub fn module_iter(iter: TagIter) -> ModuleIter {
-    ModuleIter { iter: iter }
+    ModuleIter { iter }
 }
 
 /// An iterator over all module tags.
@@ -57,7 +57,7 @@ impl<'a> Iterator for ModuleIter<'a> {
     }
 }
 
-impl <'a> Debug for ModuleIter<'a> {
+impl<'a> Debug for ModuleIter<'a> {
     fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
         let mut list = f.debug_list();
         self.clone().for_each(|tag| {

+ 4 - 4
src/rsdp.rs

@@ -87,7 +87,7 @@ impl RsdpV1Tag {
     /// The "RSD PTR " marker singature.
     ///
     /// This is originally a 8-byte C string (not null terminated!) that must contain "RSD PTR "
-    pub fn signature<'a>(&'a self) -> Option<&'a str> {
+    pub fn signature(&self) -> Option<&str> {
         str::from_utf8(&self.signature).ok()
     }
 
@@ -102,7 +102,7 @@ impl RsdpV1Tag {
     }
 
     /// An OEM-supplied string that identifies the OEM.
-    pub fn oem_id<'a>(&'a self) -> Option<&'a str> {
+    pub fn oem_id(&self) -> Option<&str> {
         str::from_utf8(&self.oem_id).ok()
     }
 
@@ -138,7 +138,7 @@ impl RsdpV2Tag {
     /// The "RSD PTR " marker singature.
     ///
     /// This is originally a 8-byte C string (not null terminated!) that must contain "RSD PTR ".
-    pub fn signature<'a>(&'a self) -> Option<&'a str> {
+    pub fn signature(&self) -> Option<&str> {
         str::from_utf8(&self.signature).ok()
     }
 
@@ -154,7 +154,7 @@ impl RsdpV2Tag {
     }
 
     /// An OEM-supplied string that identifies the OEM.
-    pub fn oem_id<'a>(&'a self) -> Option<&'a str> {
+    pub fn oem_id(&self) -> Option<&str> {
         str::from_utf8(&self.oem_id).ok()
     }
 

+ 22 - 20
src/vbe_info.rs

@@ -88,15 +88,17 @@ impl fmt::Debug for VBEControlInfo {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         f.debug_struct("VBEControlInfo")
             .field("signature", &self.signature)
-            .field("version", &{self.version})
-            .field("oem_string_ptr", &{self.oem_string_ptr})
-            .field("capabilities", &{self.capabilities})
-            .field("mode_list_ptr", &{self.mode_list_ptr})
-            .field("total_memory", &{self.total_memory})
-            .field("oem_software_revision", &{self.oem_software_revision})
-            .field("oem_vendor_name_ptr", &{self.oem_vendor_name_ptr})
-            .field("oem_product_name_ptr", &{self.oem_product_name_ptr})
-            .field("oem_product_revision_ptr", &{self.oem_product_revision_ptr})
+            .field("version", &{ self.version })
+            .field("oem_string_ptr", &{ self.oem_string_ptr })
+            .field("capabilities", &{ self.capabilities })
+            .field("mode_list_ptr", &{ self.mode_list_ptr })
+            .field("total_memory", &{ self.total_memory })
+            .field("oem_software_revision", &{ self.oem_software_revision })
+            .field("oem_vendor_name_ptr", &{ self.oem_vendor_name_ptr })
+            .field("oem_product_name_ptr", &{ self.oem_product_name_ptr })
+            .field("oem_product_revision_ptr", &{
+                self.oem_product_revision_ptr
+            })
             .finish()
     }
 }
@@ -199,16 +201,16 @@ pub struct VBEModeInfo {
 impl fmt::Debug for VBEModeInfo {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         f.debug_struct("VBEModeInfo")
-            .field("mode_attributes", &{self.mode_attributes})
+            .field("mode_attributes", &{ self.mode_attributes })
             .field("window_a_attributes", &self.window_a_attributes)
             .field("window_b_attributes", &self.window_b_attributes)
-            .field("window_granularity", &{self.window_granularity})
-            .field("window_size", &{self.window_size})
-            .field("window_a_segment", &{self.window_a_segment})
-            .field("window_b_segment", &{self.window_b_segment})
-            .field("window_function_ptr", &{self.window_function_ptr})
-            .field("pitch", &{self.pitch})
-            .field("resolution", &{self.resolution})
+            .field("window_granularity", &{ self.window_granularity })
+            .field("window_size", &{ self.window_size })
+            .field("window_a_segment", &{ self.window_a_segment })
+            .field("window_b_segment", &{ self.window_b_segment })
+            .field("window_function_ptr", &{ self.window_function_ptr })
+            .field("pitch", &{ self.pitch })
+            .field("resolution", &{ self.resolution })
             .field("character_size", &self.character_size)
             .field("number_of_planes", &self.number_of_planes)
             .field("bpp", &self.bpp)
@@ -221,9 +223,9 @@ impl fmt::Debug for VBEModeInfo {
             .field("blue_field", &self.blue_field)
             .field("reserved_field", &self.reserved_field)
             .field("direct_color_attributes", &self.direct_color_attributes)
-            .field("framebuffer_base_ptr", &{self.framebuffer_base_ptr})
-            .field("offscreen_memory_offset", &{self.offscreen_memory_offset})
-            .field("offscreen_memory_size", &{self.offscreen_memory_size})
+            .field("framebuffer_base_ptr", &{ self.framebuffer_base_ptr })
+            .field("offscreen_memory_offset", &{ self.offscreen_memory_offset })
+            .field("offscreen_memory_size", &{ self.offscreen_memory_size })
             .finish()
     }
 }