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