diff options
| author | Tom Rini <[email protected]> | 2023-06-06 09:47:17 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-06-06 09:47:17 -0400 |
| commit | fadf83c86d7252df2b50ba526ffeea95658cb5b5 (patch) | |
| tree | c86f5d29ab2ddad0886ec1f16b1486f774c30aff /include | |
| parent | d39277ff4210a1a3e07d40564a19c2e59cec04aa (diff) | |
| parent | b46cec41664f35c689385c70c76d274a059c7251 (diff) | |
Merge tag 'ubifixes-for-v2023-07-rc4' of https://source.denx.de/u-boot/custodians/u-boot-ubi
ubifs changes for v2023.07-rc4
UBIFS fixes from Ben Dooks
- ubifs: allow loading to above 4GiB
Diffstat (limited to 'include')
| -rw-r--r-- | include/ubifs_uboot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ubifs_uboot.h b/include/ubifs_uboot.h index b025779d59f..db8a29e9bbd 100644 --- a/include/ubifs_uboot.h +++ b/include/ubifs_uboot.h @@ -21,7 +21,7 @@ int ubifs_init(void); int uboot_ubifs_mount(char *vol_name); void uboot_ubifs_umount(void); int ubifs_is_mounted(void); -int ubifs_load(char *filename, u32 addr, u32 size); +int ubifs_load(char *filename, unsigned long addr, u32 size); int ubifs_set_blk_dev(struct blk_desc *rbdd, struct disk_partition *info); int ubifs_ls(const char *dir_name); |
