diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-09-17 18:46:56 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-10-24 13:50:31 -0400 |
commit | ad15749b6d2b26bf7afe8a9d8724027ba1165b25 (patch) | |
tree | 80c51df7904216ac3a8359351c4a9b5e7dfda6c5 /fs/ubifs/ubifs.h | |
parent | afc1744ec87d26965fc9a311554e0d50962555bd (diff) | |
download | u-boot-ad15749b6d2b26bf7afe8a9d8724027ba1165b25.tar.gz u-boot-ad15749b6d2b26bf7afe8a9d8724027ba1165b25.tar.bz2 u-boot-ad15749b6d2b26bf7afe8a9d8724027ba1165b25.zip |
ubifs: Modify ubifs u-boot wrapper function prototypes for generic fs use
Modify the ubifs u-boot wrapper function prototypes for generic fs use,
and give them their own header file.
This is a preparation patch for adding ubifs support to the generic fs
code from fs/fs.c.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'fs/ubifs/ubifs.h')
-rw-r--r-- | fs/ubifs/ubifs.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h index a51b2376d2..225965c95d 100644 --- a/fs/ubifs/ubifs.h +++ b/fs/ubifs/ubifs.h @@ -34,6 +34,7 @@ #include <asm/atomic.h> #include <asm-generic/atomic-long.h> #include <ubi_uboot.h> +#include <ubifs_uboot.h> #include <linux/ctype.h> #include <linux/time.h> @@ -2379,11 +2380,6 @@ int ubifs_decompress(const void *buf, int len, void *out, int *out_len, #include "key.h" #ifdef __UBOOT__ -/* these are used in cmd_ubifs.c */ -int ubifs_init(void); -int uboot_ubifs_mount(char *vol_name); void ubifs_umount(struct ubifs_info *c); -int ubifs_ls(char *dir_name); -int ubifs_load(char *filename, u32 addr, u32 size); #endif #endif /* !__UBIFS_H__ */ |