diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-01-26 14:43:52 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2018-01-29 07:48:59 +0100 |
commit | 9dbaebcf9f401c5dcea762e34a3dc8ed10760623 (patch) | |
tree | a8902bd5b2d15f2d045fa0935841958c191a2fe3 /include/flash.h | |
parent | c8a9a82c10e0c55f6cfa71cb174968cb54acfa5d (diff) | |
download | u-boot-9dbaebcf9f401c5dcea762e34a3dc8ed10760623.tar.gz u-boot-9dbaebcf9f401c5dcea762e34a3dc8ed10760623.tar.bz2 u-boot-9dbaebcf9f401c5dcea762e34a3dc8ed10760623.zip |
flash: Fix spelling of "ERR_TIMOUT"
checkpatch.pl complains about the spelling of ERR_TIMOUT. Since the
error is only used in a handful of files, we rename the error to
ERR_TIMEOUT.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/flash.h')
-rw-r--r-- | include/flash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/flash.h b/include/flash.h index dc67cb2df6..1a4e879009 100644 --- a/include/flash.h +++ b/include/flash.h @@ -122,7 +122,7 @@ extern int jedec_flash_match(flash_info_t *info, ulong base); * return codes from flash_write(): */ #define ERR_OK 0 -#define ERR_TIMOUT 1 +#define ERR_TIMEOUT 1 #define ERR_NOT_ERASED 2 #define ERR_PROTECTED 4 #define ERR_INVAL 8 |