summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/ubi
diff options
context:
space:
mode:
authorHeiko Schocher <hs@denx.de>2015-10-22 06:19:22 +0200
committerHeiko Schocher <hs@denx.de>2015-10-26 09:22:50 +0100
commit248f260cbd23f1a5f5d7a9aebdf2bd8253e0d04b (patch)
tree29a58f7aba0361dd5c8480a2837f819af2b9ec33 /drivers/mtd/ubi
parent0195a7bb36a0abc71145da419001377bf56662fd (diff)
downloadblackbird-obmc-uboot-248f260cbd23f1a5f5d7a9aebdf2bd8253e0d04b.tar.gz
blackbird-obmc-uboot-248f260cbd23f1a5f5d7a9aebdf2bd8253e0d04b.zip
UBI: Fastmap: Fix PEB array type
The PEB array is an array of __be32, so let's fix the scan_pool() prototype accordingly. Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/mtd/ubi')
-rw-r--r--drivers/mtd/ubi/fastmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/ubi/fastmap.c b/drivers/mtd/ubi/fastmap.c
index 48ba98a6b5..f824ec8b29 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
{
OpenPOWER on IntegriCloud