]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Add comments to loadbios.c
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 20 Jan 2010 19:33:01 +0000 (20:33 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 20 Jan 2010 19:33:01 +0000 (20:33 +0100)
commands/efi/loadbios.c

index 183ba7e8533868beedfc5076d8a8f9bee9753ca2..f48e4c5cb7c0e7d8a167df96e264fb435861040e 100644 (file)
@@ -50,6 +50,7 @@ enable_rom_area (void)
       return 0;
     }
 
+  /* FIXME: should be macroified.  */
   addr = grub_pci_make_address (dev, 144);
   grub_pci_write_byte (addr++, 0x30);
   grub_pci_write_byte (addr++, 0x33);
@@ -76,6 +77,7 @@ lock_rom_area (void)
   grub_pci_address_t addr;
   grub_pci_device_t dev = { .bus = 0, .device = 0, .function = 0};
 
+  /* FIXME: should be macroified.  */
   addr = grub_pci_make_address (dev, 144);
   grub_pci_write_byte (addr++, 0x10);
   grub_pci_write_byte (addr++, 0x11);