diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2016-09-10 08:30:09 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-09-10 21:45:24 -0700 |
commit | ee41f07c2f2c944465ade7c9591a6139a783be41 (patch) | |
tree | aed479486e849916e4c363d5308beaa00545cf6a /drivers/atm | |
parent | 24310fd565b16ec7c39e3db5b0240f0cdbbd0475 (diff) |
ATM-nicstar: Improve another size determination in ns_init_card()
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>
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/nicstar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atm/nicstar.c b/drivers/atm/nicstar.c index 96062e10c8eb..ef977bf54a40 100644 --- a/drivers/atm/nicstar.c +++ b/drivers/atm/nicstar.c @@ -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; |