aboutsummaryrefslogtreecommitdiff
path: root/kernel/fs
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/fs')
-rw-r--r--kernel/fs/squashfs/id.c2
-rw-r--r--kernel/fs/squashfs/squashfs.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/kernel/fs/squashfs/id.c b/kernel/fs/squashfs/id.c
index d2920c9..56322a5 100644
--- a/kernel/fs/squashfs/id.c
+++ b/kernel/fs/squashfs/id.c
@@ -41,7 +41,7 @@
#include "squashfs.h"
-int get_id(struct super_block *s, unsigned int index, unsigned int *id)
+int squashfs_get_id(struct super_block *s, unsigned int index, unsigned int *id)
{
struct squashfs_sb_info *msblk = s->s_fs_info;
int block = SQUASHFS_ID_BLOCK(index);
diff --git a/kernel/fs/squashfs/squashfs.h b/kernel/fs/squashfs/squashfs.h
index e896275..33a14f9 100644
--- a/kernel/fs/squashfs/squashfs.h
+++ b/kernel/fs/squashfs/squashfs.h
@@ -68,7 +68,7 @@ extern __le64 *read_fragment_index_table(struct super_block *, long long,
unsigned int);
/* id.c */
-extern int get_id(struct super_block *, unsigned int, unsigned int *);
+extern int squashfs_get_id(struct super_block *, unsigned int, unsigned int *);
extern __le64 *read_id_index_table(struct super_block *, long long,
unsigned short);