style: add braces around if/while statements
Per guidelines, all statements should have braces around them. We do not have a CI check for this, so a few went in unnoticed. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
912e117e9e
commit
4c32258606
63 changed files with 281 additions and 195 deletions
|
@ -56,8 +56,9 @@ void _start16(void)
|
|||
*/
|
||||
volatile unsigned short *vga = (unsigned short *)0xb8000;
|
||||
|
||||
for (int i = 0; i < 240; i++)
|
||||
for (int i = 0; i < 240; i++) {
|
||||
vga[i] = 0xcc20;
|
||||
}
|
||||
|
||||
/* Spin again waiting on the BSP processor to give us a stack. We
|
||||
* won't use it until the entry code of stub32, but we want to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue