Message ID | 1507904997-26606-1-git-send-email-bhumirks@gmail.com (mailing list archive) |
---|---|
State | Deferred |
Headers | show |
diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c index cbd4495..f38975f 100644 --- a/drivers/scsi/scsi_transport_fc.c +++ b/drivers/scsi/scsi_transport_fc.c @@ -323,7 +323,7 @@ struct device_attribute device_attr_##_prefix##_##_name = \ struct fc_internal { struct scsi_transport_template t; - struct fc_function_template *f; + const struct fc_function_template *f; /* * For attributes : each object has :
The 'f' field of the fc_internal structure do not modify the fields of the fc_function_template structure it points to. And there are no other pointers initialized with this field 'f'. So, the field 'f' is never modified and therefore make it const. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> --- drivers/scsi/scsi_transport_fc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)