diff options
author | Philip A. Prindeville <philipp@redfish-solutions.com> | 2011-03-30 13:22:45 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-30 16:53:37 -0700 |
commit | 1e19e658567472c46c9b4d27acdb804de04dfdac (patch) | |
tree | 4527e2ae83a90adc6b25d18141b81d2045f752e9 /drivers/atm | |
parent | ad19031b5f6ede5b2df057e3e1b4f82a2ef7f75f (diff) |
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 <philipp@redfish-solutions.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/solos-pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c index 25ef1a4556e6..2c4146afd84a 100644 --- a/drivers/atm/solos-pci.c +++ b/drivers/atm/solos-pci.c @@ -710,8 +710,8 @@ void solos_bh(unsigned long card_arg) le16_to_cpu(header->vci)); if (!vcc) { if (net_ratelimit()) - dev_warn(&card->dev->dev, "Received packet for unknown VCI.VPI %d.%d on port %d\n", - le16_to_cpu(header->vci), le16_to_cpu(header->vpi), + dev_warn(&card->dev->dev, "Received packet for unknown VPI.VCI %d.%d on port %d\n", + le16_to_cpu(header->vpi), le16_to_cpu(header->vci), port); continue; } |