diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-01-07 23:15:10 +0000 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2018-01-10 23:25:10 -0500 |
commit | bcb872400b50e0cfa75f12e6d6097595cd317690 (patch) | |
tree | b1a9550acf02191fefa78e3572cde69238d6bebf | |
parent | 8b56918082794e088291d3d08dac643596be5e63 (diff) | |
download | op-kernel-dev-bcb872400b50e0cfa75f12e6d6097595cd317690.zip op-kernel-dev-bcb872400b50e0cfa75f12e6d6097595cd317690.tar.gz |
scsi: bfa: use ARRAY_SIZE for array sizing calculation on array __pciids
Use the ARRAY_SIZE macro on array __pciids to determine size of the
array. Improvement suggested by coccinelle.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r-- | drivers/scsi/bfa/bfa_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/bfa/bfa_core.c b/drivers/scsi/bfa/bfa_core.c index 3e1caec..10a63be 100644 --- a/drivers/scsi/bfa/bfa_core.c +++ b/drivers/scsi/bfa/bfa_core.c @@ -1957,7 +1957,7 @@ bfa_get_pciids(struct bfa_pciid_s **pciids, int *npciids) {BFA_PCI_VENDOR_ID_BROCADE, BFA_PCI_DEVICE_ID_CT_FC}, }; - *npciids = sizeof(__pciids) / sizeof(__pciids[0]); + *npciids = ARRAY_SIZE(__pciids); *pciids = __pciids; } |