Skip to content

Commit 1e19e65

Browse files
pprindevilledavem330
authored andcommitted
atm/solos-pci: Use VPI.VCI notation uniformly.
Use VPI.VCI notation consistently throughout the module. This is the one remaining place where the VCI is used before the VPI in any output. Signed-off-by: Philip Prindeville <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent ad19031 commit 1e19e65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/atm/solos-pci.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,8 @@ void solos_bh(unsigned long card_arg)
710710
le16_to_cpu(header->vci));
711711
if (!vcc) {
712712
if (net_ratelimit())
713-
dev_warn(&card->dev->dev, "Received packet for unknown VCI.VPI %d.%d on port %d\n",
714-
le16_to_cpu(header->vci), le16_to_cpu(header->vpi),
713+
dev_warn(&card->dev->dev, "Received packet for unknown VPI.VCI %d.%d on port %d\n",
714+
le16_to_cpu(header->vpi), le16_to_cpu(header->vci),
715715
port);
716716
continue;
717717
}

0 commit comments

Comments
 (0)