fastboot: Rename public fb_ functions to fastboot_
[platform/kernel/u-boot.git] / include / fb_mmc.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2014 Broadcom Corporation.
4  */
5
6 /**
7  * fastboot_mmc_flash_write() - Write image to eMMC for fastboot
8  *
9  * @cmd: Named partition to write image to
10  * @download_buffer: Pointer to image data
11  * @download_bytes: Size of image data
12  * @response: Pointer to fastboot response buffer
13  */
14 void fastboot_mmc_flash_write(const char *cmd, void *download_buffer,
15                               unsigned int download_bytes, char *response);
16
17 /**
18  * fastboot_mmc_flash_erase() - Erase eMMC for fastboot
19  *
20  * @cmd: Named partition to erase
21  * @response: Pointer to fastboot response buffer
22  */
23 void fastboot_mmc_erase(const char *cmd, char *response);