Author: emaste
Date: Wed Jan 20 17:38:21 2016
New Revision: 294449
URL: https://svnweb.freebsd.org/changeset/base/294449

Log:
  MFC r293245: loader.efi style(9) cleanup
  
  Submitted by: smh

Modified:
  stable/10/sys/boot/efi/loader/main.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/boot/efi/loader/main.c
==============================================================================
--- stable/10/sys/boot/efi/loader/main.c        Wed Jan 20 17:08:01 2016        
(r294448)
+++ stable/10/sys/boot/efi/loader/main.c        Wed Jan 20 17:38:21 2016        
(r294449)
@@ -226,50 +226,47 @@ command_memmap(int argc, char *argv[])
        status = BS->GetMemoryMap(&sz, 0, &key, &dsz, &dver);
        if (status != EFI_BUFFER_TOO_SMALL) {
                printf("Can't determine memory map size\n");
-               return CMD_ERROR;
+               return (CMD_ERROR);
        }
        map = malloc(sz);
        status = BS->GetMemoryMap(&sz, map, &key, &dsz, &dver);
        if (EFI_ERROR(status)) {
                printf("Can't read memory map\n");
-               return CMD_ERROR;
+               return (CMD_ERROR);
        }
 
        ndesc = sz / dsz;
        printf("%23s %12s %12s %8s %4s\n",
-              "Type", "Physical", "Virtual", "#Pages", "Attr");
+           "Type", "Physical", "Virtual", "#Pages", "Attr");
 
        for (i = 0, p = map; i < ndesc;
             i++, p = NextMemoryDescriptor(p, dsz)) {
-           printf("%23s %012lx %012lx %08lx ",
-                  types[p->Type],
-                  p->PhysicalStart,
-                  p->VirtualStart,
-                  p->NumberOfPages);
-           if (p->Attribute & EFI_MEMORY_UC)
-               printf("UC ");
-           if (p->Attribute & EFI_MEMORY_WC)
-               printf("WC ");
-           if (p->Attribute & EFI_MEMORY_WT)
-               printf("WT ");
-           if (p->Attribute & EFI_MEMORY_WB)
-               printf("WB ");
-           if (p->Attribute & EFI_MEMORY_UCE)
-               printf("UCE ");
-           if (p->Attribute & EFI_MEMORY_WP)
-               printf("WP ");
-           if (p->Attribute & EFI_MEMORY_RP)
-               printf("RP ");
-           if (p->Attribute & EFI_MEMORY_XP)
-               printf("XP ");
-           printf("\n");
+               printf("%23s %012lx %012lx %08lx ", types[p->Type],
+                  p->PhysicalStart, p->VirtualStart, p->NumberOfPages);
+               if (p->Attribute & EFI_MEMORY_UC)
+                       printf("UC ");
+               if (p->Attribute & EFI_MEMORY_WC)
+                       printf("WC ");
+               if (p->Attribute & EFI_MEMORY_WT)
+                       printf("WT ");
+               if (p->Attribute & EFI_MEMORY_WB)
+                       printf("WB ");
+               if (p->Attribute & EFI_MEMORY_UCE)
+                       printf("UCE ");
+               if (p->Attribute & EFI_MEMORY_WP)
+                       printf("WP ");
+               if (p->Attribute & EFI_MEMORY_RP)
+                       printf("RP ");
+               if (p->Attribute & EFI_MEMORY_XP)
+                       printf("XP ");
+               printf("\n");
        }
 
-       return CMD_OK;
+       return (CMD_OK);
 }
 
-COMMAND_SET(configuration, "configuration",
-           "print configuration tables", command_configuration);
+COMMAND_SET(configuration, "configuration", "print configuration tables",
+    command_configuration);
 
 static const char *
 guid_to_string(EFI_GUID *guid)
@@ -315,7 +312,7 @@ command_configuration(int argc, char *ar
                printf(" at %p\n", ST->ConfigurationTable[i].VendorTable);
        }
 
-       return CMD_OK;
+       return (CMD_OK);
 }
 
 
@@ -392,20 +389,17 @@ command_nvram(int argc, char *argv[])
        status = RS->GetNextVariableName(&varsz, NULL, NULL);
 
        for (; status != EFI_NOT_FOUND; ) {
-               status = RS->GetNextVariableName(&varsz, var,
-                   &varguid);
+               status = RS->GetNextVariableName(&varsz, var, &varguid);
                //if (EFI_ERROR(status))
                        //break;
 
                conout->OutputString(conout, var);
                printf("=");
                datasz = 0;
-               status = RS->GetVariable(var, &varguid, NULL, &datasz,
-                   NULL);
+               status = RS->GetVariable(var, &varguid, NULL, &datasz, NULL);
                /* XXX: check status */
                data = malloc(datasz);
-               status = RS->GetVariable(var, &varguid, NULL, &datasz,
-                   data);
+               status = RS->GetVariable(var, &varguid, NULL, &datasz, data);
                if (EFI_ERROR(status))
                        printf("<error retrieving variable>");
                else {
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to