Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750909AbdL2X1T (ORCPT ); Fri, 29 Dec 2017 18:27:19 -0500 Received: from mail-pf0-f195.google.com ([209.85.192.195]:45911 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750709AbdL2X1S (ORCPT ); Fri, 29 Dec 2017 18:27:18 -0500 X-Google-Smtp-Source: ACJfBovvFnHgIPdIvADWWuwUXzfX66Lw2xRmp/Xr5+YIlR98KfiYUw73x6xCunC63fJd77JlGkQBAQ== From: Santha Meena Ramamoorthy To: petr@vandrovec.name Cc: gregkh@linuxfoundation.org, stephen@networkplumber.org, linux-kernel@vger.kernel.org, Santha Meena Ramamoorthy Subject: [PATCH] Staging: ncpfs: dir: fixed a bracket coding style issue Date: Fri, 29 Dec 2017 15:27:13 -0800 Message-Id: <1514590033-23503-1-git-send-email-santhameena13@gmail.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 975 Lines: 33 Fixed a coding style issue. Signed-off-by: Santha Meena Ramamoorthy --- drivers/staging/ncpfs/dir.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/staging/ncpfs/dir.c b/drivers/staging/ncpfs/dir.c index 0c57c5c..62a770f 100644 --- a/drivers/staging/ncpfs/dir.c +++ b/drivers/staging/ncpfs/dir.c @@ -46,8 +46,7 @@ extern int ncp_symlink(struct inode *, struct dentry *, const char *); #define ncp_symlink NULL #endif -const struct file_operations ncp_dir_operations = -{ +const struct file_operations ncp_dir_operations = { .llseek = generic_file_llseek, .read = generic_read_dir, .iterate = ncp_readdir, @@ -57,8 +56,7 @@ const struct file_operations ncp_dir_operations = #endif }; -const struct inode_operations ncp_dir_inode_operations = -{ +const struct inode_operations ncp_dir_inode_operations = { .create = ncp_create, .lookup = ncp_lookup, .unlink = ncp_unlink, -- 2.7.4