Browse Source

closing brace

your for loop does not have a closing brace
Ayyuce Demirbas 8 years ago
parent
commit
337c8b801d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Booting/linux-bootstrap-2.md

+ 2 - 1
Booting/linux-bootstrap-2.md

@@ -515,7 +515,8 @@ for (devno = 0x80; devno < 0x80+EDD_MBR_SIG_MAX; devno++) {
     }
     ...
     ...
-    ...
+    ... 
+    }
 ```
 
 where `0x80` is the first hard drive and the value of `EDD_MBR_SIG_MAX` macro is 16. It collects data into the array of [edd_info](https://github.com/torvalds/linux/blob/master/include/uapi/linux/edd.h#L172) structures. `get_edd_info` checks that EDD is present by invoking the `0x13` interrupt with `ah` as `0x41` and if EDD is present, `get_edd_info` again calls the `0x13` interrupt, but with `ah` as `0x48` and `si` containing the address of the buffer where EDD information will be stored.