]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
board: cobra5272: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Fri, 19 Jul 2024 10:48:44 +0000 (12:48 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 22 Jul 2024 16:51:46 +0000 (10:51 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
board/cobra5272/flash.c

index 157b71da85e80b426b9979723418ea4e1183f41a..616842e62f4edd85a6604ddd46678cb1b57868b8 100644 (file)
@@ -61,7 +61,6 @@ Done:
        return;
 }
 
-
 unsigned long flash_init(void)
 {
        int i, j;
@@ -112,7 +111,6 @@ unsigned long flash_init(void)
        return size;
 }
 
-
 #define CMD_READ_ARRAY         0x00F0
 #define CMD_UNLOCK1            0x00AA
 #define CMD_UNLOCK2            0x0055
@@ -133,7 +131,6 @@ unsigned long flash_init(void)
 #define ERR   2
 #define TMO   4
 
-
 int flash_erase(flash_info_t *info, int s_first, int s_last)
 {
        ulong result;
@@ -267,7 +264,6 @@ static int write_word(flash_info_t *info, ulong dest, ulong data)
        if ((result & data) != data)
                return ERR_NOT_ERASED;
 
-
        /*
         * Disable interrupts which might cause a timeout
         * here. Remember that our exception vectors are
@@ -317,7 +313,6 @@ static int write_word(flash_info_t *info, ulong dest, ulong data)
        return rc;
 }
 
-
 int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
 {
        ulong wp, data;