Skip to content

Commit

Permalink
ATM-nicstar: Improve another size determination in ns_init_card()
Browse files Browse the repository at this point in the history
Replace the specification of a data structure by a reference for a field
in a local variable as the parameter for the operator "sizeof" to make
the corresponding size determination a bit safer according to
the Linux coding style convention.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Markus Elfring authored and David S. Miller committed Sep 11, 2016
1 parent 24310fd commit ee41f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/atm/nicstar.c
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ static int ns_init_card(int i, struct pci_dev *pcidev)
for (j = 0; j < card->rct_size; j++)
ns_write_sram(card, j * 4, u32d, 4);

memset(card->vcmap, 0, NS_MAX_RCTSIZE * sizeof(vc_map));
memset(card->vcmap, 0, sizeof(card->vcmap));

for (j = 0; j < NS_FRSCD_NUM; j++)
card->scd2vc[j] = NULL;
Expand Down

0 comments on commit ee41f07

Please sign in to comment.