Loading drivers/mtd/ubi/fastmap-wl.c +1 −1 Original line number Diff line number Diff line Loading @@ -66,7 +66,7 @@ static void return_unused_pool_pebs(struct ubi_device *ubi, } } static int anchor_pebs_avalible(struct rb_root *root) static int anchor_pebs_available(struct rb_root *root) { struct rb_node *p; struct ubi_wl_entry *e; Loading drivers/mtd/ubi/wl.c +1 −1 Original line number Diff line number Diff line Loading @@ -692,7 +692,7 @@ static int wear_leveling_worker(struct ubi_device *ubi, struct ubi_work *wrk, #ifdef CONFIG_MTD_UBI_FASTMAP /* Check whether we need to produce an anchor PEB */ if (!anchor) anchor = !anchor_pebs_avalible(&ubi->free); anchor = !anchor_pebs_available(&ubi->free); if (anchor) { e1 = find_anchor_wl_entry(&ubi->used); Loading drivers/mtd/ubi/wl.h +1 −1 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ #ifndef UBI_WL_H #define UBI_WL_H #ifdef CONFIG_MTD_UBI_FASTMAP static int anchor_pebs_avalible(struct rb_root *root); static int anchor_pebs_available(struct rb_root *root); static void update_fastmap_work_fn(struct work_struct *wrk); static struct ubi_wl_entry *find_anchor_wl_entry(struct rb_root *root); static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi); Loading Loading
drivers/mtd/ubi/fastmap-wl.c +1 −1 Original line number Diff line number Diff line Loading @@ -66,7 +66,7 @@ static void return_unused_pool_pebs(struct ubi_device *ubi, } } static int anchor_pebs_avalible(struct rb_root *root) static int anchor_pebs_available(struct rb_root *root) { struct rb_node *p; struct ubi_wl_entry *e; Loading
drivers/mtd/ubi/wl.c +1 −1 Original line number Diff line number Diff line Loading @@ -692,7 +692,7 @@ static int wear_leveling_worker(struct ubi_device *ubi, struct ubi_work *wrk, #ifdef CONFIG_MTD_UBI_FASTMAP /* Check whether we need to produce an anchor PEB */ if (!anchor) anchor = !anchor_pebs_avalible(&ubi->free); anchor = !anchor_pebs_available(&ubi->free); if (anchor) { e1 = find_anchor_wl_entry(&ubi->used); Loading
drivers/mtd/ubi/wl.h +1 −1 Original line number Diff line number Diff line Loading @@ -2,7 +2,7 @@ #ifndef UBI_WL_H #define UBI_WL_H #ifdef CONFIG_MTD_UBI_FASTMAP static int anchor_pebs_avalible(struct rb_root *root); static int anchor_pebs_available(struct rb_root *root); static void update_fastmap_work_fn(struct work_struct *wrk); static struct ubi_wl_entry *find_anchor_wl_entry(struct rb_root *root); static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi); Loading