scsi: megaraid: Declare SCSI host template const
Make it explicit that the SCSI host template is not modified. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20230322195515.1267197-52-bvanassche@acm.org Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
5e328664ed
commit
264e222b00
|
@ -4100,7 +4100,7 @@ mega_internal_command(adapter_t *adapter, megacmd_t *mc, mega_passthru *pthru)
|
|||
return rval;
|
||||
}
|
||||
|
||||
static struct scsi_host_template megaraid_template = {
|
||||
static const struct scsi_host_template megaraid_template = {
|
||||
.module = THIS_MODULE,
|
||||
.name = "MegaRAID",
|
||||
.proc_name = "megaraid_legacy",
|
||||
|
|
|
@ -325,7 +325,7 @@ ATTRIBUTE_GROUPS(megaraid_sdev);
|
|||
/*
|
||||
* Scsi host template for megaraid unified driver
|
||||
*/
|
||||
static struct scsi_host_template megaraid_template_g = {
|
||||
static const struct scsi_host_template megaraid_template_g = {
|
||||
.module = THIS_MODULE,
|
||||
.name = "LSI Logic MegaRAID driver",
|
||||
.proc_name = "megaraid",
|
||||
|
|
|
@ -3505,7 +3505,7 @@ ATTRIBUTE_GROUPS(megaraid_host);
|
|||
/*
|
||||
* Scsi host template for megaraid_sas driver
|
||||
*/
|
||||
static struct scsi_host_template megasas_template = {
|
||||
static const struct scsi_host_template megasas_template = {
|
||||
|
||||
.module = THIS_MODULE,
|
||||
.name = "Avago SAS based MegaRAID driver",
|
||||
|
|
Loading…
Reference in New Issue