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


Groups > linux.kernel > #1313493 > unrolled thread

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

Started byBhumika Goyal <bhumirks@gmail.com>
First post2016-01-20 21:10 +0100
Last post2016-01-20 21:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

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

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

FromBhumika Goyal <bhumirks@gmail.com>
Date2016-01-20 21:10 +0100
Subject[PATCH] staging:lustre:obdclass:linux:convert &foo[0] to foo
Message-ID<qT7eO-33h-23@gated-at.bofh.it>
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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web