Commit 0936a944 authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Herbert Xu

[CRYPTO] hifn: Simplify code using ARRAY_SIZE() macro

Signed-off-by: default avatarRobert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent feedfdaa
...@@ -895,7 +895,7 @@ static int hifn_enable_crypto(struct hifn_device *dev) ...@@ -895,7 +895,7 @@ static int hifn_enable_crypto(struct hifn_device *dev)
char *offtbl = NULL; char *offtbl = NULL;
int i; int i;
for (i = 0; i < sizeof(pci2id)/sizeof(pci2id[0]); i++) { for (i = 0; i < ARRAY_SIZE(pci2id); i++) {
if (pci2id[i].pci_vendor == dev->pdev->vendor && if (pci2id[i].pci_vendor == dev->pdev->vendor &&
pci2id[i].pci_prod == dev->pdev->device) { pci2id[i].pci_prod == dev->pdev->device) {
offtbl = pci2id[i].card_id; offtbl = pci2id[i].card_id;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment