summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/fcoe
diff options
context:
space:
mode:
authorBart Van Assche <bvanassche@acm.org>2023-03-22 12:54:30 -0700
committerMartin K. Petersen <martin.petersen@oracle.com>2023-03-24 19:19:22 -0400
commitd15515f918010464e4c6e225f678926f9ab173fd (patch)
tree996439a47b1191b074ff3203eba7f55bbd1fe766 /drivers/scsi/fcoe
parent3b465a149146032be5c3e42735e7eaf45517aa97 (diff)
downloadlinux-d15515f918010464e4c6e225f678926f9ab173fd.tar.gz
linux-d15515f918010464e4c6e225f678926f9ab173fd.tar.bz2
linux-d15515f918010464e4c6e225f678926f9ab173fd.zip
scsi: fcoe: 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-36-bvanassche@acm.org Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/fcoe')
-rw-r--r--drivers/scsi/fcoe/fcoe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c
index 38774a272e62..f1429f270170 100644
--- a/drivers/scsi/fcoe/fcoe.c
+++ b/drivers/scsi/fcoe/fcoe.c
@@ -260,7 +260,7 @@ static struct fc_function_template fcoe_vport_fc_functions = {
.bsg_request = fc_lport_bsg_request,
};
-static struct scsi_host_template fcoe_shost_template = {
+static const struct scsi_host_template fcoe_shost_template = {
.module = THIS_MODULE,
.name = "FCoE Driver",
.proc_name = FCOE_NAME,