From: huzhi001@208suo.com Date: Wed, 19 Jul 2023 11:00:38 +0000 (+0800) Subject: filemap: Fix errors in file.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a841c9cb9b04b05525f0928633e84e95921ab298;p=linux.git filemap: Fix errors in file.c The following checkpatch errors are removed: ERROR: "foo * bar" should be "foo *bar" "foo * bar" should be "foo *bar" Signed-off-by: ZhiHu Signed-off-by: Anna Schumaker --- diff --git a/fs/nfs/file.c b/fs/nfs/file.c index 79b1b3fcd3fcf..3f9768810427d 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c @@ -200,7 +200,7 @@ nfs_file_splice_read(struct file *in, loff_t *ppos, struct pipe_inode_info *pipe EXPORT_SYMBOL_GPL(nfs_file_splice_read); int -nfs_file_mmap(struct file * file, struct vm_area_struct * vma) +nfs_file_mmap(struct file *file, struct vm_area_struct *vma) { struct inode *inode = file_inode(file); int status;