From: Bart Van Assche Date: Wed, 22 Mar 2023 19:54:27 +0000 (-0700) Subject: scsi: elx: efct: Declare SCSI host template const X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=67791ce19f0003831bb17fd69024ca9a1474498b;p=linux.git scsi: elx: efct: Declare SCSI host template const Make it explicit that the SCSI host template is not modified. Signed-off-by: Bart Van Assche Link: https://lore.kernel.org/r/20230322195515.1267197-33-bvanassche@acm.org Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/elx/efct/efct_xport.c b/drivers/scsi/elx/efct/efct_xport.c index 9495cedcc0b95..cf4dced20b8b7 100644 --- a/drivers/scsi/elx/efct/efct_xport.c +++ b/drivers/scsi/elx/efct/efct_xport.c @@ -10,7 +10,7 @@ static struct dentry *efct_debugfs_root; static atomic_t efct_debugfs_count; -static struct scsi_host_template efct_template = { +static const struct scsi_host_template efct_template = { .module = THIS_MODULE, .name = EFCT_DRIVER_NAME, .supported_mode = MODE_TARGET,