mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
scsi: pcmcia-sym53c500: 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-62-bvanassche@acm.org Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
36242912e2
commit
54aefe23a6
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user