diff options
author | Bart Van Assche <[email protected]> | 2023-03-22 12:54:10 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2023-03-24 19:19:20 -0400 |
commit | 88530b3ea9020550bebe2a1896d5691497b89407 (patch) | |
tree | 5801dda56a549f39b58e55564867ef24d41bf76a | |
parent | 4412df387040cda6005f3dd4907129728abcb4c3 (diff) |
scsi: a3000: Declare SCSI host template const
Make it explicit that the SCSI host template is not modified.
Signed-off-by: Bart Van Assche <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/a3000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/a3000.c b/drivers/scsi/a3000.c index 2c5cb1a02e86..c3028726bbe4 100644 --- a/drivers/scsi/a3000.c +++ b/drivers/scsi/a3000.c @@ -197,7 +197,7 @@ static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt, } } -static struct scsi_host_template amiga_a3000_scsi_template = { +static const struct scsi_host_template amiga_a3000_scsi_template = { .module = THIS_MODULE, .name = "Amiga 3000 built-in SCSI", .show_info = wd33c93_show_info, |