From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S262570AbVBXXtx (ORCPT ); Thu, 24 Feb 2005 18:49:53 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262592AbVBXXlm (ORCPT ); Thu, 24 Feb 2005 18:41:42 -0500 Received: from mailout.stusta.mhn.de ([141.84.69.5]:55305 "HELO mailout.stusta.mhn.de") by vger.kernel.org with SMTP id S262569AbVBXXhN (ORCPT ); Thu, 24 Feb 2005 18:37:13 -0500 Date: Fri, 25 Feb 2005 00:37:11 +0100 From: Adrian Bunk To: Andrew Morton Cc: al@alarsen.net, linux-kernel@vger.kernel.org Subject: [2.6 patch] fs/qnx4/: make some code static Message-ID: <20050224233711.GO8651@stusta.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6+20040907i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org This patch makes some needlessly global code static. Signed-off-by: Adrian Bunk --- This patch was already sent on: - 8 Jan 2005 fs/qnx4/bitmap.c | 4 ++-- fs/qnx4/inode.c | 8 ++++---- include/linux/qnx4_fs.h | 2 -- 3 files changed, 6 insertions(+), 8 deletions(-) --- linux-2.6.10-mm2-full/fs/qnx4/bitmap.c.old 2005-01-08 17:14:26.000000000 +0100 +++ linux-2.6.10-mm2-full/fs/qnx4/bitmap.c 2005-01-08 17:14:38.000000000 +0100 @@ -28,8 +28,8 @@ return 0; } -void count_bits(register const char *bmPart, register int size, - int *const tf) +static void count_bits(register const char *bmPart, register int size, + int *const tf) { char b; int tot = *tf; --- linux-2.6.10-mm2-full/include/linux/qnx4_fs.h.old 2005-01-08 17:15:37.000000000 +0100 +++ linux-2.6.10-mm2-full/include/linux/qnx4_fs.h 2005-01-08 17:15:52.000000000 +0100 @@ -114,7 +114,6 @@ extern unsigned long qnx4_count_free_blocks(struct super_block *sb); extern unsigned long qnx4_block_map(struct inode *inode, long iblock); -extern struct buffer_head *qnx4_getblk(struct inode *, int, int); extern struct buffer_head *qnx4_bread(struct inode *, int, int); extern struct inode_operations qnx4_file_inode_operations; @@ -130,7 +129,6 @@ extern int qnx4_rmdir(struct inode *dir, struct dentry *dentry); extern int qnx4_sync_file(struct file *file, struct dentry *dentry, int); extern int qnx4_sync_inode(struct inode *inode); -extern int qnx4_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh, int create); static inline struct qnx4_sb_info *qnx4_sb(struct super_block *sb) { --- linux-2.6.10-mm2-full/fs/qnx4/inode.c.old 2005-01-08 17:15:01.000000000 +0100 +++ linux-2.6.10-mm2-full/fs/qnx4/inode.c 2005-01-08 17:16:08.000000000 +0100 @@ -162,8 +162,8 @@ return 0; } -struct buffer_head *qnx4_getblk(struct inode *inode, int nr, - int create) +static struct buffer_head *qnx4_getblk(struct inode *inode, int nr, + int create) { struct buffer_head *result = NULL; @@ -212,7 +212,7 @@ return NULL; } -int qnx4_get_block( struct inode *inode, sector_t iblock, struct buffer_head *bh, int create ) +static int qnx4_get_block( struct inode *inode, sector_t iblock, struct buffer_head *bh, int create ) { unsigned long phys; @@ -447,7 +447,7 @@ { return generic_block_bmap(mapping,block,qnx4_get_block); } -struct address_space_operations qnx4_aops = { +static struct address_space_operations qnx4_aops = { .readpage = qnx4_readpage, .writepage = qnx4_writepage, .sync_page = block_sync_page,