From: Marek Vasut Date: Fri, 19 Jul 2024 10:48:44 +0000 (+0200) Subject: board: cobra5272: Remove duplicate newlines X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=8ed437b891924dc81714d98b4c3cd2da85e2352e;p=u-boot.git board: cobra5272: Remove duplicate newlines Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut --- diff --git a/board/cobra5272/flash.c b/board/cobra5272/flash.c index 157b71da85..616842e62f 100644 --- a/board/cobra5272/flash.c +++ b/board/cobra5272/flash.c @@ -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;