aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorplougher <plougher>2008-10-14 06:53:32 +0000
committerMohamad Ayyash <mkayyash@google.com>2015-02-23 12:34:05 -0800
commit238da4507d40918e9d9e9f78658bd4fb378359c9 (patch)
tree7dda10614bf6bb4f3e000467df0f83e3f3036e1c /kernel
parent426c85303bfb03fa8e343182f30d266dad621fcc (diff)
downloadsquashfs-tools-238da4507d40918e9d9e9f78658bd4fb378359c9.tar.gz
Rename get_id to squashfs_get_id.
Diffstat (limited to 'kernel')
-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);