ATM-nicstar: Improve another size determination in ns_init_card()
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 10 Sep 2016 06:30:09 +0000 (08:30 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sun, 11 Sep 2016 04:45:24 +0000 (21:45 -0700)
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>
drivers/atm/nicstar.c

index 96062e1..ef977bf 100644 (file)
@@ -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;