diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2009-01-02 08:44:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-02 13:19:37 -0500 |
commit | 8c056e5b148498192832678cf2957760945e8c71 (patch) | |
tree | f6462adeb837deb0397aefd03cac5daf3827b7a7 | |
parent | 4bd43f2c31848d751f63e8753cd2788d48fb5f30 (diff) |
devpts: fix unused function warning
fs/devpts/inode.c:324: warning: 'compare_init_pts_sb' defined but not used
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/devpts/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/devpts/inode.c b/fs/devpts/inode.c index b02c24313d5c..3f309f181de8 100644 --- a/fs/devpts/inode.c +++ b/fs/devpts/inode.c | |||
@@ -320,6 +320,7 @@ fail: | |||
320 | return -ENOMEM; | 320 | return -ENOMEM; |
321 | } | 321 | } |
322 | 322 | ||
323 | #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES | ||
323 | static int compare_init_pts_sb(struct super_block *s, void *p) | 324 | static int compare_init_pts_sb(struct super_block *s, void *p) |
324 | { | 325 | { |
325 | if (devpts_mnt) | 326 | if (devpts_mnt) |
@@ -327,7 +328,6 @@ static int compare_init_pts_sb(struct super_block *s, void *p) | |||
327 | return 0; | 328 | return 0; |
328 | } | 329 | } |
329 | 330 | ||
330 | #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES | ||
331 | /* | 331 | /* |
332 | * Safely parse the mount options in @data and update @opts. | 332 | * Safely parse the mount options in @data and update @opts. |
333 | * | 333 | * |