fastboot: Use const qualifier for char *part_name

In fastboot_*_get_part_info() functions we can use stronger typing by
expecting const strings.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Igor Opaniuk <igor.opaniuk@toradex.com>
This commit is contained in:
Sam Protsenko 2019-06-13 21:11:07 +03:00 committed by Marek Vasut
parent 97a0c6ff57
commit cacb03e490
4 changed files with 8 additions and 6 deletions

View File

@ -298,7 +298,8 @@ static int fb_mmc_update_zimage(struct blk_desc *dev_desc,
* @part_info: Pointer to returned disk_partition_t * @part_info: Pointer to returned disk_partition_t
* @response: Pointer to fastboot response buffer * @response: Pointer to fastboot response buffer
*/ */
int fastboot_mmc_get_part_info(char *part_name, struct blk_desc **dev_desc, int fastboot_mmc_get_part_info(const char *part_name,
struct blk_desc **dev_desc,
disk_partition_t *part_info, char *response) disk_partition_t *part_info, char *response)
{ {
int r; int r;

View File

@ -152,8 +152,8 @@ static lbaint_t fb_nand_sparse_reserve(struct sparse_storage *info,
* @part_info: Pointer to returned part_info pointer * @part_info: Pointer to returned part_info pointer
* @response: Pointer to fastboot response buffer * @response: Pointer to fastboot response buffer
*/ */
int fastboot_nand_get_part_info(char *part_name, struct part_info **part_info, int fastboot_nand_get_part_info(const char *part_name,
char *response) struct part_info **part_info, char *response)
{ {
struct mtd_info *mtd = NULL; struct mtd_info *mtd = NULL;

View File

@ -14,7 +14,8 @@
* @part_info: Pointer to returned disk_partition_t * @part_info: Pointer to returned disk_partition_t
* @response: Pointer to fastboot response buffer * @response: Pointer to fastboot response buffer
*/ */
int fastboot_mmc_get_part_info(char *part_name, struct blk_desc **dev_desc, int fastboot_mmc_get_part_info(const char *part_name,
struct blk_desc **dev_desc,
disk_partition_t *part_info, char *response); disk_partition_t *part_info, char *response);
/** /**

View File

@ -16,8 +16,8 @@
* @part_info: Pointer to returned part_info pointer * @part_info: Pointer to returned part_info pointer
* @response: Pointer to fastboot response buffer * @response: Pointer to fastboot response buffer
*/ */
int fastboot_nand_get_part_info(char *part_name, struct part_info **part_info, int fastboot_nand_get_part_info(const char *part_name,
char *response); struct part_info **part_info, char *response);
/** /**
* fastboot_nand_flash_write() - Write image to NAND for fastboot * fastboot_nand_flash_write() - Write image to NAND for fastboot