From: Oleg Drokin Date: Wed, 7 Dec 2016 22:41:29 +0000 (-0500) Subject: staging/lustre/llite: mark ll_io_init() static X-Git-Tag: v4.11-rc1~116^2~536 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a6c77da5ff8dd9326fd170759b18b62b5347a0c4;p=uclinux-h8%2Flinux.git staging/lustre/llite: mark ll_io_init() static It's not used anywhere out of this file. Highlighted by sparse. Signed-off-by: Oleg Drokin Reviewed-by: James Simmons Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/llite/file.c b/drivers/staging/lustre/lustre/llite/file.c index f634c11216e6..d93f06abd13c 100644 --- a/drivers/staging/lustre/lustre/llite/file.c +++ b/drivers/staging/lustre/lustre/llite/file.c @@ -1016,7 +1016,7 @@ static bool file_is_noatime(const struct file *file) return false; } -void ll_io_init(struct cl_io *io, const struct file *file, int write) +static void ll_io_init(struct cl_io *io, const struct file *file, int write) { struct inode *inode = file_inode(file);