UBI: rename ubi_scan_destroy_ai

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

Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
This commit is contained in:
Artem Bityutskiy
2012-05-17 15:41:12 +03:00
부모 c87fbd7deb
커밋 66a2af3824
3개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제

파일 보기

@@ -608,7 +608,7 @@ static int attach_by_scanning(struct ubi_device *ubi)
if (err)
goto out_wl;
ubi_scan_destroy_ai(ai);
ubi_destroy_ai(ai);
return 0;
out_wl:
@@ -617,7 +617,7 @@ out_vtbl:
free_internal_volumes(ubi);
vfree(ubi->vtbl);
out_ai:
ubi_scan_destroy_ai(ai);
ubi_destroy_ai(ai);
return err;
}