summaryrefslogtreecommitdiffstats
path: root/common/flash.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-05-10 11:39:53 -0600
committerTom Rini <trini@konsulko.com>2020-05-18 14:53:28 -0400
commita595a0e910960ccd4611719d5fb5c279859efaee (patch)
tree41df5208d3cbcdfad60480b056e87ef77860ae08 /common/flash.c
parentba06b3c50b4b275b66822dac8a894cd5ec508944 (diff)
downloadu-boot-a595a0e910960ccd4611719d5fb5c279859efaee.tar.gz
u-boot-a595a0e910960ccd4611719d5fb5c279859efaee.tar.xz
u-boot-a595a0e910960ccd4611719d5fb5c279859efaee.zip
flash: Tidy up coding style for flash functions
Some functions use the wrong code style and generate checkpatch errors. Fix these. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/flash.c')
-rw-r--r--common/flash.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/flash.c b/common/flash.c
index 5f155aefd1..9601716c3a 100644
--- a/common/flash.c
+++ b/common/flash.c
@@ -24,7 +24,7 @@ extern flash_info_t flash_info[]; /* info for FLASH chips */
* If necessary you have to map the second bank at lower addresses.
*/
void
-flash_protect (int flag, ulong from, ulong to, flash_info_t *info)
+flash_protect(int flag, ulong from, ulong to, flash_info_t *info)
{
ulong b_end;
short s_end;
@@ -84,7 +84,7 @@ flash_protect (int flag, ulong from, ulong to, flash_info_t *info)
*/
flash_info_t *
-addr2info (ulong addr)
+addr2info(ulong addr)
{
flash_info_t *info;
int i;
@@ -119,12 +119,12 @@ addr2info (ulong addr)
* (only some targets require alignment)
*/
int
-flash_write (char *src, ulong addr, ulong cnt)
+flash_write(char *src, ulong addr, ulong cnt)
{
int i;
ulong end = addr + cnt - 1;
- flash_info_t *info_first = addr2info (addr);
- flash_info_t *info_last = addr2info (end );
+ flash_info_t *info_first = addr2info(addr);
+ flash_info_t *info_last = addr2info(end);
flash_info_t *info;
__maybe_unused char *src_orig = src;
__maybe_unused char *addr_orig = (char *)addr;