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


Groups > linux.kernel > #1723350 > unrolled thread

[PATCH] scsi: hpsa: make access_method const

Started byBhumika Goyal <bhumirks@gmail.com>
First post2017-08-30 16:00 +0200
Last post2017-08-30 16:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] scsi: hpsa: make access_method const Bhumika Goyal <bhumirks@gmail.com> - 2017-08-30 16:00 +0200

#1723350 — [PATCH] scsi: hpsa: make access_method const

FromBhumika Goyal <bhumirks@gmail.com>
Date2017-08-30 16:00 +0200
Subject[PATCH] scsi: hpsa: make access_method const
Message-ID<ukbHb-yr-13@gated-at.bofh.it>
Make these const as they are not modified anywhere.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
To compile-test hpsa.h, I test-compiled scsi/hpsa.c which
includes this file.

 drivers/scsi/hpsa.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/scsi/hpsa.h b/drivers/scsi/hpsa.h
index 018f980..4688b8f 100644
--- a/drivers/scsi/hpsa.h
+++ b/drivers/scsi/hpsa.h
@@ -628,28 +628,28 @@ static unsigned long SA5_ioaccel_mode1_completed(struct ctlr_info *h, u8 q)
 	.command_completed =	SA5_completed,
 };
 
-static struct access_method SA5_ioaccel_mode1_access = {
+static const struct access_method SA5_ioaccel_mode1_access = {
 	.submit_command =	SA5_submit_command,
 	.set_intr_mask =	SA5_performant_intr_mask,
 	.intr_pending =		SA5_ioaccel_mode1_intr_pending,
 	.command_completed =	SA5_ioaccel_mode1_completed,
 };
 
-static struct access_method SA5_ioaccel_mode2_access = {
+static const struct access_method SA5_ioaccel_mode2_access = {
 	.submit_command =	SA5_submit_command_ioaccel2,
 	.set_intr_mask =	SA5_performant_intr_mask,
 	.intr_pending =		SA5_performant_intr_pending,
 	.command_completed =	SA5_performant_completed,
 };
 
-static struct access_method SA5_performant_access = {
+static const struct access_method SA5_performant_access = {
 	.submit_command =	SA5_submit_command,
 	.set_intr_mask =	SA5_performant_intr_mask,
 	.intr_pending =		SA5_performant_intr_pending,
 	.command_completed =	SA5_performant_completed,
 };
 
-static struct access_method SA5_performant_access_no_read = {
+static const struct access_method SA5_performant_access_no_read = {
 	.submit_command =	SA5_submit_command_no_read,
 	.set_intr_mask =	SA5_performant_intr_mask,
 	.intr_pending =		SA5_performant_intr_pending,
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web