mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
UBI: Fastmap: Remove unnecessary `\'
Signed-off-by: Sheng Yong <shengyong1@huawei.com> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
212240dfd2
commit
a18fd67267
@ -88,13 +88,13 @@ size_t ubi_calc_fm_size(struct ubi_device *ubi)
|
||||
{
|
||||
size_t size;
|
||||
|
||||
size = sizeof(struct ubi_fm_sb) + \
|
||||
sizeof(struct ubi_fm_hdr) + \
|
||||
sizeof(struct ubi_fm_scan_pool) + \
|
||||
sizeof(struct ubi_fm_scan_pool) + \
|
||||
(ubi->peb_count * sizeof(struct ubi_fm_ec)) + \
|
||||
(sizeof(struct ubi_fm_eba) + \
|
||||
(ubi->peb_count * sizeof(__be32))) + \
|
||||
size = sizeof(struct ubi_fm_sb) +
|
||||
sizeof(struct ubi_fm_hdr) +
|
||||
sizeof(struct ubi_fm_scan_pool) +
|
||||
sizeof(struct ubi_fm_scan_pool) +
|
||||
(ubi->peb_count * sizeof(struct ubi_fm_ec)) +
|
||||
(sizeof(struct ubi_fm_eba) +
|
||||
(ubi->peb_count * sizeof(__be32))) +
|
||||
sizeof(struct ubi_fm_volhdr) * UBI_MAX_VOLUMES;
|
||||
return roundup(size, ubi->leb_size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user