aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2005-01-07 22:28:23 -0800
committerLinus Torvalds <torvalds@evo.osdl.org>2005-01-07 22:28:23 -0800
commit283b7bfb037330f8acf2999228e0c11c621fed9c (patch)
tree766fc9119c91c7e8f9b0b115c13099d9ed79308a /fs
parente3c0df51ec49d4a83d0aa74cf5e5c919687faeee (diff)
downloadhistory-283b7bfb037330f8acf2999228e0c11c621fed9c.tar.gz
[PATCH] devpts/inode.c: make one struct static
The patch below makes struct devpts_file_inode_operations in fs/devpts/inode.c static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/devpts/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/devpts/inode.c b/fs/devpts/inode.c
index db7f97d4e422d7..1571c8d6c23223 100644
--- a/fs/devpts/inode.c
+++ b/fs/devpts/inode.c
@@ -31,7 +31,7 @@ static struct xattr_handler *devpts_xattr_handlers[] = {
NULL
};
-struct inode_operations devpts_file_inode_operations = {
+static struct inode_operations devpts_file_inode_operations = {
#ifdef CONFIG_DEVPTS_FS_XATTR
.setxattr = generic_setxattr,
.getxattr = generic_getxattr,