diff options
author | John Garry <john.garry@huawei.com> | 2019-04-12 16:57:52 +0800 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2019-04-15 18:55:00 -0400 |
commit | 7b27c5fe247b4288f41551ced5bf458f58dc77b8 (patch) | |
tree | 8690506f9060347020a7eff518d654f646e6591c /include/scsi | |
parent | 01d4e3a2fc07b269eedeefa1f7c5c7090c442900 (diff) | |
download | linux-stable-7b27c5fe247b4288f41551ced5bf458f58dc77b8.tar.gz linux-stable-7b27c5fe247b4288f41551ced5bf458f58dc77b8.tar.bz2 linux-stable-7b27c5fe247b4288f41551ced5bf458f58dc77b8.zip |
scsi: libsas: Stop hardcoding SAS address length
Many times we use 8 for SAS address length, while we already have a macro
for this - SAS_ADDR_SIZE.
Replace instances of this with the macro. However, don't touch the SAS
address array sizes sas.h, as these are defined according to the SAS spec.
Some missing whitespaces are also added, and whitespace indentation
in sas_hash_addr() is also fixed (see sas_hash_addr()).
Signed-off-by: John Garry <john.garry@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/libsas.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/scsi/libsas.h b/include/scsi/libsas.h index 56b2dba7d911..cfaaf1254211 100644 --- a/include/scsi/libsas.h +++ b/include/scsi/libsas.h @@ -245,9 +245,9 @@ static inline struct sas_discovery_event *to_sas_discovery_event(struct work_str struct sas_discovery { struct sas_discovery_event disc_work[DISC_NUM_EVENTS]; unsigned long pending; - u8 fanout_sas_addr[8]; - u8 eeds_a[8]; - u8 eeds_b[8]; + u8 fanout_sas_addr[SAS_ADDR_SIZE]; + u8 eeds_a[SAS_ADDR_SIZE]; + u8 eeds_b[SAS_ADDR_SIZE]; int max_level; }; |