mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
scsi: usb: uas: Declare two host templates and host template pointers const
Improve source code documentation by constifying host templates that are not modified. Acked-by: Alan Stern <stern@rowland.harvard.edu> (for usb-storage) Acked-by: Oliver Neukum <oneukum@suse.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Oliver Neukum <oneukum@suse.com> Cc: linux-usb@vger.kernel.org Signed-off-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20230322195515.1267197-81-bvanassche@acm.org Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
f2e2fe3dec
commit
04d1fa4346
@ -620,7 +620,7 @@ out:
|
||||
|
||||
static DEF_SCSI_QCMD(mts_scsi_queuecommand)
|
||||
|
||||
static struct scsi_host_template mts_scsi_host_template = {
|
||||
static const struct scsi_host_template mts_scsi_host_template = {
|
||||
.module = THIS_MODULE,
|
||||
.name = "microtekX6",
|
||||
.proc_name = "microtekX6",
|
||||
|
@ -894,7 +894,7 @@ static int uas_slave_configure(struct scsi_device *sdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct scsi_host_template uas_host_template = {
|
||||
static const struct scsi_host_template uas_host_template = {
|
||||
.module = THIS_MODULE,
|
||||
.name = "uas",
|
||||
.queuecommand = uas_queuecommand,
|
||||
|
@ -937,7 +937,7 @@ int usb_stor_probe1(struct us_data **pus,
|
||||
struct usb_interface *intf,
|
||||
const struct usb_device_id *id,
|
||||
const struct us_unusual_dev *unusual_dev,
|
||||
struct scsi_host_template *sht)
|
||||
const struct scsi_host_template *sht)
|
||||
{
|
||||
struct Scsi_Host *host;
|
||||
struct us_data *us;
|
||||
|
@ -187,7 +187,7 @@ extern int usb_stor_probe1(struct us_data **pus,
|
||||
struct usb_interface *intf,
|
||||
const struct usb_device_id *id,
|
||||
const struct us_unusual_dev *unusual_dev,
|
||||
struct scsi_host_template *sht);
|
||||
const struct scsi_host_template *sht);
|
||||
extern int usb_stor_probe2(struct us_data *us);
|
||||
extern void usb_stor_disconnect(struct usb_interface *intf);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user