[U-Boot] [PATCH v1 3/3] UBI: Fastmap: Fix PEB array type
Heiko Schocher
hs at denx.de
Thu Oct 22 06:19:22 CEST 2015
The PEB array is an array of __be32, so let's fix the
scan_pool() prototype accordingly.
Signed-off-by: Ezequiel Garcia <ezequiel at vanguardiasur.com.ar>
Signed-off-by: Heiko Schocher <hs at denx.de>
---
only repost this patch, as it belongs into this serie
drivers/mtd/ubi/fastmap.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/ubi/fastmap.c b/drivers/mtd/ubi/fastmap.c
index 48ba98a..f824ec8 100644
--- a/drivers/mtd/ubi/fastmap.c
+++ b/drivers/mtd/ubi/fastmap.c
@@ -453,11 +453,11 @@ static void unmap_peb(struct ubi_attach_info *ai, int pnum)
*/
#ifndef __UBOOT__
static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
- int *pebs, int pool_size, unsigned long long *max_sqnum,
+ __be32 *pebs, int pool_size, unsigned long long *max_sqnum,
struct list_head *free)
#else
static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
- int *pebs, int pool_size, unsigned long long *max_sqnum,
+ __be32 *pebs, int pool_size, unsigned long long *max_sqnum,
struct list_head *free)
#endif
{
--
2.1.0
More information about the U-Boot
mailing list