diff mbox

[1/1] Use VPI.VCI notation consistently in solos-pci driver

Message ID 4D1792D1.4040803@redfish-solutions.com
State Not Applicable, archived
Delegated to: David Miller
Headers show

Commit Message

Philip Prindeville Dec. 26, 2010, 7:09 p.m. UTC
Use VPI.VCI notation consistently.

Signed-of-by: Philip Prindeville<philipp@redfish-solutions.com>
---



--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Philip Prindeville Dec. 26, 2010, 8:13 p.m. UTC | #1
Nix.

My sed script mangled the paths, and after doing a quick check on git.kernel.org I see this one has already been applied... it just hasn't made it back downstream into the openadsl project on SourceForge.


On 12/26/10 11:09 AM, Philip Prindeville wrote:
> Use VPI.VCI notation consistently.
>
> Signed-of-by: Philip Prindeville<philipp@redfish-solutions.com>
> ---
>
> --- a/drivers/atm/solos-pci-0.11/solos-pci.c    2010-12-24 01:07:09.000000000 -0700
> +++ b/drivers/atm/solos-pci-0.11/solos-pci.c    2010-12-24 14:18:45.000000000 -0700
> @@ -734,8 +734,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;
>                  }
>
>

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

--- a/drivers/atm/solos-pci-0.11/solos-pci.c	2010-12-24 01:07:09.000000000 -0700
+++ b/drivers/atm/solos-pci-0.11/solos-pci.c	2010-12-24 14:18:45.000000000 -0700
@@ -734,8 +734,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;
  				}