diff options
author | Alex Kiernan | 2018-05-29 15:30:40 +0000 |
---|---|---|
committer | Marek Vasut | 2018-05-30 11:59:21 +0200 |
commit | c4ded03ef608be37db105200010d2f3f88195bd6 (patch) | |
tree | da52aed38bf366e0809899f537429b461b39fb8b /include/fb_mmc.h | |
parent | 312a10f16bf3e8b68066fa359d4dd6a887b5fd55 (diff) |
fastboot: Refactor fastboot_okay/fail to take response
Add the response string as a parameter to fastboot_okay/fail, instead
of modifying a global, to match the contract expected by the AOSP
U-Boot code.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/fb_mmc.h')
-rw-r--r-- | include/fb_mmc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fb_mmc.h b/include/fb_mmc.h index a2d7c4895fa..39a960cc9d7 100644 --- a/include/fb_mmc.h +++ b/include/fb_mmc.h @@ -4,5 +4,5 @@ */ void fb_mmc_flash_write(const char *cmd, void *download_buffer, - unsigned int download_bytes); -void fb_mmc_erase(const char *cmd); + unsigned int download_bytes, char *response); +void fb_mmc_erase(const char *cmd, char *response); |