diff options
author | Martin K. Petersen <martin.petersen@oracle.com> | 2023-03-25 01:13:03 +0100 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2023-03-25 01:13:03 +0100 |
commit | 62d15dba0aa4448c15da9c9443018c70fc2527b2 (patch) | |
tree | 09817a55288ad1754dbd201488824382b9df622e /drivers/message/fusion/mptspi.c | |
parent | Merge patch series "arcmsr fixes" (diff) | |
parent | scsi: usb: uas: Declare two host templates and host template pointers const (diff) | |
download | linux-62d15dba0aa4448c15da9c9443018c70fc2527b2.tar.xz linux-62d15dba0aa4448c15da9c9443018c70fc2527b2.zip |
Merge patch series "Constify most SCSI host templates"
Bart Van Assche <bvanassche@acm.org> says:
It helps humans and the compiler if it is made explicit that SCSI host
templates are not modified. Hence this patch series that constifies most
SCSI host templates. Please consider this patch series for the next merge
window.
Link: https://lore.kernel.org/r/20230322195515.1267197-1-bvanassche@acm.org
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/message/fusion/mptspi.c')
-rw-r--r-- | drivers/message/fusion/mptspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptspi.c b/drivers/message/fusion/mptspi.c index 62089a8caa2f..6c5920db1e9d 100644 --- a/drivers/message/fusion/mptspi.c +++ b/drivers/message/fusion/mptspi.c @@ -820,7 +820,7 @@ static void mptspi_slave_destroy(struct scsi_device *sdev) mptscsih_slave_destroy(sdev); } -static struct scsi_host_template mptspi_driver_template = { +static const struct scsi_host_template mptspi_driver_template = { .module = THIS_MODULE, .proc_name = "mptspi", .show_info = mptscsih_show_info, |