aboutsummaryrefslogtreecommitdiff
path: root/include/ext4fs.h
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2023-11-08 12:51:09 -0500
committerTom Rini <trini@konsulko.com>2023-11-16 18:53:09 -0500
commit7667bdeb0e6f63b4df9a253c85ea08d1625d6e63 (patch)
treeea2b393d0ae53afc8f316622f6842c79b7802c12 /include/ext4fs.h
parentda35ab68de168eb0481a02368559999cfd7882ba (diff)
downloadu-boot-7667bdeb0e6f63b4df9a253c85ea08d1625d6e63.zip
u-boot-7667bdeb0e6f63b4df9a253c85ea08d1625d6e63.tar.gz
u-boot-7667bdeb0e6f63b4df9a253c85ea08d1625d6e63.tar.bz2
fs: ext4: Remove unused parameter from ext4_mount
The part_length parameter is not used. Remove it. Signed-off-by: Sean Anderson <seanga2@gmail.com>
Diffstat (limited to 'include/ext4fs.h')
-rw-r--r--include/ext4fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ext4fs.h b/include/ext4fs.h
index dd66d27..d96edfd 100644
--- a/include/ext4fs.h
+++ b/include/ext4fs.h
@@ -147,7 +147,7 @@ int ext4fs_create_link(const char *target, const char *fname);
struct ext_filesystem *get_fs(void);
int ext4fs_open(const char *filename, loff_t *len);
int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread);
-int ext4fs_mount(unsigned part_length);
+int ext4fs_mount(void);
void ext4fs_close(void);
void ext4fs_reinit_global(void);
int ext4fs_ls(const char *dirname);