Hang on, I just looked upstream in git.kernel.org and realized that there are a lot of fixes there that aren't in the openadsl tree...
It would be nice to update openadsl and release a solos-pci driver 0.12 with these updates.
On 12/26/10 11:09 AM, Philip Prindeville wrote:
> Use VPI.VCI notation consistently.
>
> Signed-of-by: Philip Prindeville<ph...@re...>
> ---
>
> --- 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;
> }
>
|