]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
tools: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:19:34 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:18 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
tools/env/fw_env.h
tools/envcrc.c
tools/fdtgrep.c
tools/gdb/remote.c
tools/imagetool.h
tools/img2srec.c
tools/imx8mimage.c
tools/imximage.c
tools/kwbimage.c
tools/mxsimage.c

index 78c803c94478bd012cba8f7cc9fa263a45c5e600..060eea542cc5d5f43b3a3094ac926fcb92ee5b24 100644 (file)
@@ -94,7 +94,6 @@ int fw_env_set(int argc, char *argv[], struct env_opts *opts);
  */
 int fw_parse_script(char *fname, struct env_opts *opts);
 
-
 /**
  * fw_env_open() - read enviroment from flash into RAM cache
  *
@@ -151,7 +150,6 @@ int fw_env_flush(struct env_opts *opts);
  */
 int fw_env_close(struct env_opts *opts);
 
-
 /**
  * fw_env_version - return the current version of the library
  *
index 550f31038bd7887dd8e8c44f4a0f946e3aa88bb0..090518003642c130efef915bd506ffc8e32bcb43 100644 (file)
@@ -48,7 +48,6 @@
 
 #define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)
 
-
 #ifdef ENV_IS_EMBEDDED
 # include <env_internal.h>
 extern unsigned int env_size;
index f1ff1946bd4ae93ca8e6ba2d12b6a303e243e526..037176bc9ef8f580e67b452a0915f6c103a67fe3 100644 (file)
@@ -102,7 +102,6 @@ static void print_ansi_colour(FILE *fout, int col)
                fprintf(fout, "\033[1;%dm", col + 30);
 }
 
-
 /**
  * value_add() - Add a new value to our list of things to grep for
  *
index 3cd04213514c607dd9a2aaaa1b9aae6e92a7d63f..f17bb06fb4c1fb1ca8a27e0337f0b53fabbe5005 100644 (file)
@@ -45,7 +45,6 @@ extern "C" {
 #endif
 #endif /* alloca not defined.  */
 
-
 #include "serial.h"
 #include "error.h"
 #include "remote.h"
@@ -313,7 +312,6 @@ static int remote_binary_checked;
                 ? (REGISTER_BYTES * 2 + 32) \
                 : 400)
 
-
 /* This variable sets the number of bytes to be written to the target
    in a single packet.  Normally PBUFSIZ is satisfactory, but some
    targets need smaller values (perhaps because the receiving end
index a766aa2ae91f72129f55061fd9c7449c163e2cbc..57be608210aa3a3dbd0607edee4151d19f4794ee 100644 (file)
@@ -256,7 +256,6 @@ time_t imagetool_get_source_date(
  * for ex. default_image.c, fit_image.c
  */
 
-
 void pbl_load_uboot(int fd, struct image_tool_params *mparams);
 int zynqmpbif_copy_image(int fd, struct image_tool_params *mparams);
 int imx8image_copy_image(int fd, struct image_tool_params *mparams);
index 75efd76e0e3fe9758b83fc1946729fd2c122ab05..5a6d3259f3e866ac4ed826ab491ac5c4ea3ccf16 100644 (file)
@@ -109,7 +109,6 @@ static char* ExtractDecimal (uint32_t* value,  char* getPtr)
   return getPtr;
 } /* ExtractDecimal */
 
-
 static void ExtractNumber (uint32_t* value,  char* getPtr)
 {
   bool  neg = false;
@@ -129,7 +128,6 @@ static void ExtractNumber (uint32_t* value,  char* getPtr)
   if (neg) *value = -(*value);
 } /* ExtractNumber */
 
-
 static uint8_t* ExtractWord(uint16_t* value, uint8_t* buffer)
 {
   uint16_t x;
@@ -139,7 +137,6 @@ static uint8_t* ExtractWord(uint16_t* value, uint8_t* buffer)
   return buffer;
 } /* ExtractWord */
 
-
 static uint8_t* ExtractLong(uint32_t* value, uint8_t* buffer)
 {
   uint32_t x;
@@ -151,14 +148,12 @@ static uint8_t* ExtractLong(uint32_t* value, uint8_t* buffer)
   return buffer;
 } /* ExtractLong */
 
-
 static uint8_t* ExtractBlock(uint16_t count, uint8_t* data, uint8_t* buffer)
 {
   while (count--) *data++ = *buffer++;
   return buffer;
 } /* ExtractBlock */
 
-
 static char* WriteHex(char* pa, uint8_t value, uint16_t* pCheckSum)
 {
   uint16_t  temp;
@@ -173,7 +168,6 @@ static char* WriteHex(char* pa, uint8_t value, uint16_t* pCheckSum)
   return pa;
 }
 
-
 static char* BuildSRecord(char* pa, uint16_t sType, uint32_t addr,
                          const uint8_t* data, int nCount)
 {
@@ -223,7 +217,6 @@ static char* BuildSRecord(char* pa, uint16_t sType, uint32_t addr,
   return pa;
 }
 
-
 static void ConvertELF(char* fileName, uint32_t loadOffset)
 {
   FILE*         file;
@@ -240,7 +233,6 @@ static void ConvertELF(char* fileName, uint32_t loadOffset)
   char          srecLine[128];
   char         *hdr_name;
 
-
   /* open file */
   if ((file = fopen(fileName,"rb")) == NULL) {
     fprintf (stderr, "Can't open %s: %s\n", fileName, strerror(errno));
@@ -348,7 +340,6 @@ static void ConvertELF(char* fileName, uint32_t loadOffset)
   fclose(file);
 } /* ConvertELF */
 
-
 /*************************************************************************
 |  MAIN
 |*************************************************************************/
index 939f829a9f739c219da5151714068bc8bb6dde4e..d60d293e649beba2d528b04de5d303da84fadaf8 100644 (file)
@@ -5,7 +5,6 @@
  * Peng Fan <peng.fan@nxp.com>
  */
 
-
 #include "imagetool.h"
 #include <image.h>
 #include "imximage.h"
index 2df4c7dd491472c77401ba806479b25180172308..467d9f27d2a60bd002703e870198d0e4145f82da 100644 (file)
@@ -793,7 +793,6 @@ static uint32_t parse_cfg_file(struct imx_header *imxhdr, char *name)
        return dcd_len;
 }
 
-
 static int imximage_check_image_types(uint8_t type)
 {
        if (type == IH_TYPE_IMXIMAGE)
@@ -1057,7 +1056,6 @@ static int imximage_generate(struct image_tool_params *params,
        return pad_len;
 }
 
-
 /*
  * imximage parameters
  */
index 4dce495ff037cac81a55389ff79c9c35217d6f5e..d1cbced28fc3c11b2e64bbc2e6de0d9f6a955259 100644 (file)
@@ -804,7 +804,6 @@ static int kwb_sign_and_verify(RSA *key, void *data, int datasz,
        return 0;
 }
 
-
 static int kwb_dump_fuse_cmds_38x(FILE *out, struct secure_hdr_v1 *sec_hdr)
 {
        struct hash_v1 kak_pub_hash;
index ead61d0cd6313c6c81e941fe3381124720d7a268..42df0698ca2d5ad72e4065948736ad5e292c5fe7 100644 (file)
@@ -2058,7 +2058,6 @@ static int sb_verify_image_end(struct sb_image_ctx *ictx,
        return ret;
 }
 
-
 static int sb_build_tree_from_img(struct sb_image_ctx *ictx)
 {
        long filesize;