Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c87fbd7d authored by Artem Bityutskiy's avatar Artem Bityutskiy
Browse files

UBI: rename ubi_scan_get_free_peb



The old name is not logical anymore - rename it to 'ubi_early_get_peb()'.

Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
parent d717dc2f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -682,7 +682,7 @@ static int early_erase_peb(struct ubi_device *ubi,
}

/**
 * ubi_scan_get_free_peb - get a free physical eraseblock.
 * ubi_early_get_peb - get a free physical eraseblock.
 * @ubi: UBI device description object
 * @ai: attaching information
 *
@@ -695,7 +695,7 @@ static int early_erase_peb(struct ubi_device *ubi,
 * This function returns scanning physical eraseblock information in case of
 * success and an error code in case of failure.
 */
struct ubi_ainf_peb *ubi_scan_get_free_peb(struct ubi_device *ubi,
struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
				       struct ubi_attach_info *ai)
{
	int err = 0;
+2 −2
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ int ubi_add_to_av(struct ubi_device *ubi, struct ubi_attach_info *ai, int pnum,
struct ubi_ainf_volume *ubi_find_av(const struct ubi_attach_info *ai,
				    int vol_id);
void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av);
struct ubi_ainf_peb *ubi_scan_get_free_peb(struct ubi_device *ubi,
struct ubi_ainf_peb *ubi_early_get_peb(struct ubi_device *ubi,
				       struct ubi_attach_info *ai);
struct ubi_attach_info *ubi_scan(struct ubi_device *ubi);
void ubi_scan_destroy_ai(struct ubi_attach_info *ai);
+1 −1
Original line number Diff line number Diff line
@@ -312,7 +312,7 @@ static int create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai,
		return -ENOMEM;

retry:
	new_aeb = ubi_scan_get_free_peb(ubi, ai);
	new_aeb = ubi_early_get_peb(ubi, ai);
	if (IS_ERR(new_aeb)) {
		err = PTR_ERR(new_aeb);
		goto out_free;