Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1714040
| From | Arvind Yadav <arvind.yadav.cs@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/3] scsi: ibmvfc: constify vio_device_id |
| Date | 2017-08-17 15:50 +0200 |
| Message-ID | <uftln-5z4-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
vio_device_id are not supposed to change at runtime. All functions
working with vio_device_id provided by <asm/vio.h> work with
const vio_device_id. So mark the non-const structs as const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
drivers/scsi/ibmvscsi/ibmvfc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/ibmvscsi/ibmvfc.c b/drivers/scsi/ibmvscsi/ibmvfc.c
index cc4e05b..87d83b1 100644
--- a/drivers/scsi/ibmvscsi/ibmvfc.c
+++ b/drivers/scsi/ibmvscsi/ibmvfc.c
@@ -4929,7 +4929,7 @@ static unsigned long ibmvfc_get_desired_dma(struct vio_dev *vdev)
return pool_dma + ((512 * 1024) * driver_template.cmd_per_lun);
}
-static struct vio_device_id ibmvfc_device_table[] = {
+static const struct vio_device_id ibmvfc_device_table[] = {
{"fcp", "IBM,vfc-client"},
{ "", "" }
};
--
2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 1/3] scsi: ibmvfc: constify vio_device_id Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-08-17 15:50 +0200 [PATCH 2/3] scsi: ibmvscsi: constify vio_device_id Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-08-17 15:50 +0200 [PATCH 3/3] scsi: ibmvscsi_tgt: constify vio_device_id Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-08-17 15:50 +0200
csiph-web