Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1313493

[PATCH] staging:lustre:obdclass:linux:convert &foo[0] to foo

From Bhumika Goyal <bhumirks@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] staging:lustre:obdclass:linux:convert &foo[0] to foo
Date 2016-01-20 21:10 +0100
Message-ID <qT7eO-33h-23@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Replace &foo[0] with foo,to follow Linux coding style.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 drivers/staging/lustre/lustre/obdclass/linux/linux-module.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
index 11fe6cb..ecc2897 100644
--- a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
+++ b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
@@ -130,22 +130,22 @@ int obd_ioctl_getdata(char **buf, int *len, void *arg)
 	}
 
 	if (data->ioc_inllen1) {
-		data->ioc_inlbuf1 = &data->ioc_bulk[0];
+		data->ioc_inlbuf1 = data->ioc_bulk;
 		offset += cfs_size_round(data->ioc_inllen1);
 	}
 
 	if (data->ioc_inllen2) {
-		data->ioc_inlbuf2 = &data->ioc_bulk[0] + offset;
+		data->ioc_inlbuf2 = data->ioc_bulk + offset;
 		offset += cfs_size_round(data->ioc_inllen2);
 	}
 
 	if (data->ioc_inllen3) {
-		data->ioc_inlbuf3 = &data->ioc_bulk[0] + offset;
+		data->ioc_inlbuf3 = data->ioc_bulk + offset;
 		offset += cfs_size_round(data->ioc_inllen3);
 	}
 
 	if (data->ioc_inllen4)
-		data->ioc_inlbuf4 = &data->ioc_bulk[0] + offset;
+		data->ioc_inlbuf4 = data->ioc_bulk + offset;
 
 	return 0;
 
-- 
1.9.1

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH] staging:lustre:obdclass:linux:convert &foo[0] to foo Bhumika Goyal <bhumirks@gmail.com> - 2016-01-20 21:10 +0100

csiph-web