scsi: pcmcia-sym53c500: Declare SCSI host template const
authorBart Van Assche <bvanassche@acm.org>
Wed, 22 Mar 2023 19:54:56 +0000 (12:54 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 24 Mar 2023 23:19:58 +0000 (19:19 -0400)
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-62-bvanassche@acm.org
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/pcmcia/sym53c500_cs.c

index 5d7dfef..278c78d 100644 (file)
@@ -668,7 +668,7 @@ ATTRIBUTE_GROUPS(SYM53C500_shost);
 /*
 *  scsi_host_template initializer
 */
-static struct scsi_host_template sym53c500_driver_template = {
+static const struct scsi_host_template sym53c500_driver_template = {
      .module                   = THIS_MODULE,
      .name                     = "SYM53C500",
      .info                     = SYM53C500_info,
@@ -702,7 +702,7 @@ SYM53C500_config(struct pcmcia_device *link)
        int ret;
        int irq_level, port_base;
        struct Scsi_Host *host;
-       struct scsi_host_template *tpnt = &sym53c500_driver_template;
+       const struct scsi_host_template *tpnt = &sym53c500_driver_template;
        struct sym53c500_data *data;
 
        dev_dbg(&link->dev, "SYM53C500_config\n");