From 72488596426bc82eeb71bf343e8b0049af214378 Mon Sep 17 00:00:00 2001 From: Laure Millet Date: Wed, 18 Mar 2015 19:49:46 +0100 Subject: [PATCH] Staging: lustre: namei.c: fix "foo * bar" should be "foo *bar" This patch fixes a coding style error in a pointer declaration. Signed-off-by: Laure Millet Signed-off-by: Maxime Lorrillere Signed-off-by: Greg Kroah-Hartman --- drivers/staging/lustre/lustre/llite/namei.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/llite/namei.c b/drivers/staging/lustre/lustre/llite/namei.c index 992f3f0b5829..477dae11375e 100644 --- a/drivers/staging/lustre/lustre/llite/namei.c +++ b/drivers/staging/lustre/lustre/llite/namei.c @@ -974,7 +974,7 @@ out: * Instead, ll_ddelete() and ll_d_iput() will update it based upon if there * is any lock existing. They will recycle dentries and inodes based upon locks * too. b=20433 */ -static int ll_unlink(struct inode * dir, struct dentry *dentry) +static int ll_unlink(struct inode *dir, struct dentry *dentry) { struct ptlrpc_request *request = NULL; struct md_op_data *op_data; -- 2.34.1