From: Bart Van Assche Date: Wed, 22 Mar 2023 19:54:47 +0000 (-0700) Subject: scsi: mesh: Declare SCSI host template const X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0fabb7fbad553a06f3e1066a82ba5761b2e617b5;p=linux.git scsi: mesh: Declare SCSI host template const Make it explicit that the SCSI host template is not modified. Signed-off-by: Bart Van Assche Link: https://lore.kernel.org/r/20230322195515.1267197-53-bvanassche@acm.org Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/mesh.c b/drivers/scsi/mesh.c index 84b541a57b7b1..e276583c590c3 100644 --- a/drivers/scsi/mesh.c +++ b/drivers/scsi/mesh.c @@ -1830,7 +1830,7 @@ static int mesh_shutdown(struct macio_dev *mdev) return 0; } -static struct scsi_host_template mesh_template = { +static const struct scsi_host_template mesh_template = { .proc_name = "mesh", .name = "MESH", .queuecommand = mesh_queue,