]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/mtd/nand/nand_util.c
nand: Change ulong to loff_t and size_t
[karo-tx-uboot.git] / drivers / mtd / nand / nand_util.c
index c66eeefcb6196f7c3cd37ab95adbad28960ca61b..5ef7df74010bde3251416d2ca7b08c0fa1848efc 100644 (file)
@@ -321,7 +321,8 @@ int nand_get_lock_status(struct mtd_info *mtd, loff_t offset)
  *
  * @return             0 on success, -1 in case of error
  */
-int nand_unlock(struct mtd_info *mtd, ulong start, ulong length, int allexcept)
+int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length,
+       int allexcept)
 {
        int ret = 0;
        int chipnr;
@@ -329,7 +330,7 @@ int nand_unlock(struct mtd_info *mtd, ulong start, ulong length, int allexcept)
        int page;
        struct nand_chip *chip = mtd->priv;
 
-       debug("nand_unlock%s: start: %08x, length: %d!\n",
+       debug("nand_unlock%s: start: %08llx, length: %d!\n",
                allexcept ? " (allexcept)" : "", start, length);
 
        /* select the NAND device */