summaryrefslogtreecommitdiffstats
path: root/drivers/atm
diff options
context:
space:
mode:
authorPhilip A. Prindeville2011-03-30 15:22:45 +0200
committerDavid S. Miller2011-03-31 01:53:37 +0200
commit1e19e658567472c46c9b4d27acdb804de04dfdac (patch)
tree4527e2ae83a90adc6b25d18141b81d2045f752e9 /drivers/atm
parentAtheros, atl2: Fix mem leaks in error paths of atl2_set_eeprom (diff)
downloadkernel-qcow2-linux-1e19e658567472c46c9b4d27acdb804de04dfdac.tar.gz
kernel-qcow2-linux-1e19e658567472c46c9b4d27acdb804de04dfdac.tar.xz
kernel-qcow2-linux-1e19e658567472c46c9b4d27acdb804de04dfdac.zip
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.c4
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;
}