diff options
author | Steve Rae | 2014-08-26 11:47:27 -0700 |
---|---|---|
committer | Tom Rini | 2014-09-24 18:30:27 -0400 |
commit | c0aebb3382133c99bc458d96b562703dae4ae928 (patch) | |
tree | c1930546f8812788ea0ac52a3e953b3d0f363cfe /include | |
parent | 7172de33b0cc0a44713fd4fbbb61fd1fada17341 (diff) |
usb/gadget: fastboot: add eMMC support for flash command
- add support for 'fastboot flash' command for eMMC devices
Signed-off-by: Steve Rae <srae@broadcom.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/fb_mmc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/fb_mmc.h b/include/fb_mmc.h new file mode 100644 index 00000000000..1ad1d1327da --- /dev/null +++ b/include/fb_mmc.h @@ -0,0 +1,8 @@ +/* + * Copyright 2014 Broadcom Corporation. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +void fb_mmc_flash_write(const char *cmd, void *download_buffer, + unsigned int download_bytes, char *response); |