diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-09-24 12:46:11 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-10-13 09:28:59 -0400 |
commit | 21536062d98938dfcfbae593a26c154e359749dc (patch) | |
tree | 4615523a9c38cfc502c9f830832d76e37f725511 /include/scsi | |
parent | e5bd7b54e93ef7151469a12b8c28d863b9f8a088 (diff) |
[SCSI] iscsi class: fix endpoint id handling
Some endpoint code was using unsigned int and some
was using uint64_t. This converts it all to uint64_t.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_transport_iscsi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scsi/scsi_transport_iscsi.h b/include/scsi/scsi_transport_iscsi.h index 8749d4d8e244..c667cc396545 100644 --- a/include/scsi/scsi_transport_iscsi.h +++ b/include/scsi/scsi_transport_iscsi.h | |||
@@ -208,7 +208,7 @@ extern void iscsi_host_for_each_session(struct Scsi_Host *shost, | |||
208 | struct iscsi_endpoint { | 208 | struct iscsi_endpoint { |
209 | void *dd_data; /* LLD private data */ | 209 | void *dd_data; /* LLD private data */ |
210 | struct device dev; | 210 | struct device dev; |
211 | unsigned int id; | 211 | uint64_t id; |
212 | }; | 212 | }; |
213 | 213 | ||
214 | /* | 214 | /* |