diff options
author | 2023-03-22 12:54:58 -0700 | |
---|---|---|
committer | 2023-03-24 19:19:58 -0400 | |
commit | 4e9e0a51aa31e82a949a4b34b1a8503e57c3932e (patch) | |
tree | 1c1139a7bfc8c3faf33a99ddd4cf598f8c0233bf /drivers/scsi/pmcraid.c | |
parent | scsi: pcmcia-pm8001: Declare SCSI host template const (diff) | |
download | wireguard-linux-4e9e0a51aa31e82a949a4b34b1a8503e57c3932e.tar.xz wireguard-linux-4e9e0a51aa31e82a949a4b34b1a8503e57c3932e.zip |
scsi: pmcraid: Declare SCSI host template const
Make it explicit that the SCSI host template is not modified.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Link: https://lore.kernel.org/r/20230322195515.1267197-64-bvanassche@acm.org
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/scsi/pmcraid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c index 836ddc476764..23c5230dbed4 100644 --- a/drivers/scsi/pmcraid.c +++ b/drivers/scsi/pmcraid.c @@ -3611,7 +3611,7 @@ static struct attribute *pmcraid_host_attrs[] = { ATTRIBUTE_GROUPS(pmcraid_host); /* host template structure for pmcraid driver */ -static struct scsi_host_template pmcraid_host_template = { +static const struct scsi_host_template pmcraid_host_template = { .module = THIS_MODULE, .name = PMCRAID_DRIVER_NAME, .queuecommand = pmcraid_queuecommand, |