diff options
| author | Martin K. Petersen <[email protected]> | 2023-03-25 00:13:03 +0000 |
|---|---|---|
| committer | Martin K. Petersen <[email protected]> | 2023-03-25 00:13:03 +0000 |
| commit | 62d15dba0aa4448c15da9c9443018c70fc2527b2 (patch) | |
| tree | 09817a55288ad1754dbd201488824382b9df622e /drivers/message/fusion/mptfc.c | |
| parent | Merge patch series "arcmsr fixes" (diff) | |
| parent | scsi: usb: uas: Declare two host templates and host template pointers const (diff) | |
| download | kernel-62d15dba0aa4448c15da9c9443018c70fc2527b2.tar.gz kernel-62d15dba0aa4448c15da9c9443018c70fc2527b2.zip | |
Merge patch series "Constify most SCSI host templates"
Bart Van Assche <[email protected]> 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/[email protected]
Signed-off-by: Martin K. Petersen <[email protected]>
Diffstat (limited to 'drivers/message/fusion/mptfc.c')
| -rw-r--r-- | drivers/message/fusion/mptfc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptfc.c b/drivers/message/fusion/mptfc.c index fac747109209..22e7779a332b 100644 --- a/drivers/message/fusion/mptfc.c +++ b/drivers/message/fusion/mptfc.c @@ -105,7 +105,7 @@ static int mptfc_abort(struct scsi_cmnd *SCpnt); static int mptfc_dev_reset(struct scsi_cmnd *SCpnt); static int mptfc_bus_reset(struct scsi_cmnd *SCpnt); -static struct scsi_host_template mptfc_driver_template = { +static const struct scsi_host_template mptfc_driver_template = { .module = THIS_MODULE, .proc_name = "mptfc", .show_info = mptscsih_show_info, |
