Run Nindent on com32/gplinclude/vpd/vpd.h
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:21 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:21 +0000 (15:10 -0700)
Automatically reformat com32/gplinclude/vpd/vpd.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/gplinclude/vpd/vpd.h

index 4bb1afc..f1dcec6 100644 (file)
 #include <inttypes.h>
 #include <stdbool.h>
 
-enum {VPD_TABLE_PRESENT = 100, ENOVPDTABLE};
+enum { VPD_TABLE_PRESENT = 100, ENOVPDTABLE };
 
 typedef struct {
-        char bios_build_id[10];
-        char box_serial_number[8];
-        char motherboard_serial_number[12];
-        char machine_type_model[8];
-        char bios_release_date[9];
-        char default_flash_filename[13];
-        char bios_version[255];
-        char base_address[6];
-        bool filled;
+    char bios_build_id[10];
+    char box_serial_number[8];
+    char motherboard_serial_number[12];
+    char machine_type_model[8];
+    char bios_release_date[9];
+    char default_flash_filename[13];
+    char bios_version[255];
+    char base_address[6];
+    bool filled;
 } s_vpd;
 
-int vpd_decode(s_vpd *vpd);
+int vpd_decode(s_vpd * vpd);
 #endif