diff options
author | Bart Van Assche <[email protected]> | 2023-03-22 12:54:52 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2023-03-24 19:19:58 -0400 |
commit | 8a098ba4d996a063c8ef54c3a41193566d00d69b (patch) | |
tree | 5df8fcdb9524d2ff87ddad2e2c27e0f748c90217 | |
parent | f01feece6b64c0931c5e5cc7aee6d880ef6ce840 (diff) |
scsi: mvumi: 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/mvumi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/mvumi.c b/drivers/scsi/mvumi.c index 60c65586f30e..73aa7059b556 100644 --- a/drivers/scsi/mvumi.c +++ b/drivers/scsi/mvumi.c @@ -2168,7 +2168,7 @@ mvumi_bios_param(struct scsi_device *sdev, struct block_device *bdev, return 0; } -static struct scsi_host_template mvumi_template = { +static const struct scsi_host_template mvumi_template = { .module = THIS_MODULE, .name = "Marvell Storage Controller", |