diff options
author | Martin K. Petersen <martin.petersen@oracle.com> | 2023-03-24 20:13:03 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2023-03-24 20:13:03 -0400 |
commit | 62d15dba0aa4448c15da9c9443018c70fc2527b2 (patch) | |
tree | 09817a55288ad1754dbd201488824382b9df622e /drivers/scsi/be2iscsi | |
parent | 9abb593e59ce0960a3282b3fd92b80d1aa426a0e (diff) | |
parent | 04d1fa4346ccedde68886a4d5a0003f3a322467b (diff) | |
download | lwn-62d15dba0aa4448c15da9c9443018c70fc2527b2.tar.gz lwn-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/scsi/be2iscsi')
-rw-r--r-- | drivers/scsi/be2iscsi/be_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c index 08920f5f4217..e48f14ad6dfd 100644 --- a/drivers/scsi/be2iscsi/be_main.c +++ b/drivers/scsi/be2iscsi/be_main.c @@ -398,7 +398,7 @@ static const struct pci_device_id beiscsi_pci_id_table[] = { MODULE_DEVICE_TABLE(pci, beiscsi_pci_id_table); -static struct scsi_host_template beiscsi_sht = { +static const struct scsi_host_template beiscsi_sht = { .module = THIS_MODULE, .name = "Emulex 10Gbe open-iscsi Initiator Driver", .proc_name = DRV_NAME, |