Formatting adjustments.
authorWilhansen Li <wil@byimplication.com>
Mon, 26 Dec 2016 17:07:08 +0000 (01:07 +0800)
committerWilhansen Li <wil@byimplication.com>
Mon, 26 Dec 2016 17:07:08 +0000 (01:07 +0800)
dtbSplit.cpp
dtbTool.c

index 1acd5d6eb81ccb2cd0b9dea28217ad7ffa7e6550..80af0d6284faf22e6851bb2ddfdf19d08a10b52b 100644 (file)
@@ -137,7 +137,6 @@ void dumpData(const uint32_t entries, const string &dest, ifstream &dtb) {
                ofstream output(dest + id.str() + ".dtb", ios::binary);
                output.write(data.data(), data.size());
        }
-
 }
 
 int main(int argc, char **argv) {
index 1a23d93995a3821b4c94c13da513296f970e2931..b5dd93514a47d94c7fc41f04b0a1e723227aeac1 100644 (file)
--- a/dtbTool.c
+++ b/dtbTool.c
@@ -57,8 +57,8 @@
 #define RC_SUCCESS     0
 #define RC_ERROR       -1
 
-#define INFO_ENTRY_SIZE 16
-#define INFO_ENTRY_SIZE_S "16"
+#define INFO_ENTRY_SIZE     16
+#define INFO_ENTRY_SIZE_S  "16"
 #define TABLE_ENTRY_HEADER_SIZE (INFO_ENTRY_SIZE * 3 + sizeof(uint32_t) * 2)
 
 struct chipInfo_t {
@@ -81,7 +81,7 @@ int   page_size = PAGE_SIZE_DEF;
 
 int entry_cmp(uint8_t *a, uint8_t *b)
 {
-       return memcmp(a, b, INFO_ENTRY_SIZE);
+    return memcmp(a, b, INFO_ENTRY_SIZE);
 }
 
 uint32_t swap_bytes_u32(uint32_t b) {
@@ -401,8 +401,8 @@ int main(int argc, char **argv)
                 }
 
                 log_info("chipset: %" INFO_ENTRY_SIZE_S "s, "
-                               "platform: %" INFO_ENTRY_SIZE_S "s, "
-                               "rev: %" INFO_ENTRY_SIZE_S "s\n",
+                         "platform: %" INFO_ENTRY_SIZE_S "s, "
+                         "rev: %" INFO_ENTRY_SIZE_S "s\n",
                          chip->chipset, chip->platform, chip->revNum);
 
                 rc = chip_add(chip);