From: linux@prisktech.co.nz (Tony Prisk)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/4] Add support for velocity network driver on platform devices
Date: Sun, 28 Apr 2013 15:16:42 +1200 [thread overview]
Message-ID: <1367119006-31280-1-git-send-email-linux@prisktech.co.nz> (raw)
The first three patches are general tidyup.
Patch #1 just alphabetizes the #includes to make it easier to read.
Patch #2 replaces vptr->dev with vptr->netdev, again for clarity in the code.
Patch #3 replaces the pci dma functions with the generic versions.
I have build tested these patches but don't have a PCI velocity to run-test it.
I can't see that they should introduce any problems as it is all renames and
function swapping.
Patch #4 adds support for the velocity driver on devicetree platform devices.
Binding document included. This patch is compile-tested for PCI, and boot
tested on a VIA APC8750.
I think it would be pertinent to get some tested-by's for PCI users.
Regards
Tony Prisk
Tony Prisk (4):
net: velocity: Alphabetize #includes
net: velocity: Rename vptr->dev to vptr->netdev
net: velocity: Convert to generic dma functions
net: velocity: Add platform device support to VIA velocity driver
.../devicetree/bindings/net/via-velocity.txt | 20 +
drivers/net/ethernet/via/Kconfig | 3 +-
drivers/net/ethernet/via/via-velocity.c | 612 ++++++++++++++------
drivers/net/ethernet/via/via-velocity.h | 35 +-
4 files changed, 480 insertions(+), 190 deletions(-)
create mode 100644 Documentation/devicetree/bindings/net/via-velocity.txt
--
1.7.9.5
WARNING: multiple messages have this Message-ID (diff)
From: Tony Prisk <linux@prisktech.co.nz>
To: Francois Romieu <romieu@fr.zoreil.com>
Cc: netdev@vger.kernel.org,
vt8500-wm8505-linux-kernel@googlegroups.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, Tony Prisk <linux@prisktech.co.nz>
Subject: [PATCH 0/4] Add support for velocity network driver on platform devices
Date: Sun, 28 Apr 2013 15:16:42 +1200 [thread overview]
Message-ID: <1367119006-31280-1-git-send-email-linux@prisktech.co.nz> (raw)
The first three patches are general tidyup.
Patch #1 just alphabetizes the #includes to make it easier to read.
Patch #2 replaces vptr->dev with vptr->netdev, again for clarity in the code.
Patch #3 replaces the pci dma functions with the generic versions.
I have build tested these patches but don't have a PCI velocity to run-test it.
I can't see that they should introduce any problems as it is all renames and
function swapping.
Patch #4 adds support for the velocity driver on devicetree platform devices.
Binding document included. This patch is compile-tested for PCI, and boot
tested on a VIA APC8750.
I think it would be pertinent to get some tested-by's for PCI users.
Regards
Tony Prisk
Tony Prisk (4):
net: velocity: Alphabetize #includes
net: velocity: Rename vptr->dev to vptr->netdev
net: velocity: Convert to generic dma functions
net: velocity: Add platform device support to VIA velocity driver
.../devicetree/bindings/net/via-velocity.txt | 20 +
drivers/net/ethernet/via/Kconfig | 3 +-
drivers/net/ethernet/via/via-velocity.c | 612 ++++++++++++++------
drivers/net/ethernet/via/via-velocity.h | 35 +-
4 files changed, 480 insertions(+), 190 deletions(-)
create mode 100644 Documentation/devicetree/bindings/net/via-velocity.txt
--
1.7.9.5
WARNING: multiple messages have this Message-ID (diff)
From: Tony Prisk <linux@prisktech.co.nz>
To: Francois Romieu <romieu@fr.zoreil.com>
Cc: vt8500-wm8505-linux-kernel@googlegroups.com,
netdev@vger.kernel.org, Tony Prisk <linux@prisktech.co.nz>,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/4] Add support for velocity network driver on platform devices
Date: Sun, 28 Apr 2013 15:16:42 +1200 [thread overview]
Message-ID: <1367119006-31280-1-git-send-email-linux@prisktech.co.nz> (raw)
The first three patches are general tidyup.
Patch #1 just alphabetizes the #includes to make it easier to read.
Patch #2 replaces vptr->dev with vptr->netdev, again for clarity in the code.
Patch #3 replaces the pci dma functions with the generic versions.
I have build tested these patches but don't have a PCI velocity to run-test it.
I can't see that they should introduce any problems as it is all renames and
function swapping.
Patch #4 adds support for the velocity driver on devicetree platform devices.
Binding document included. This patch is compile-tested for PCI, and boot
tested on a VIA APC8750.
I think it would be pertinent to get some tested-by's for PCI users.
Regards
Tony Prisk
Tony Prisk (4):
net: velocity: Alphabetize #includes
net: velocity: Rename vptr->dev to vptr->netdev
net: velocity: Convert to generic dma functions
net: velocity: Add platform device support to VIA velocity driver
.../devicetree/bindings/net/via-velocity.txt | 20 +
drivers/net/ethernet/via/Kconfig | 3 +-
drivers/net/ethernet/via/via-velocity.c | 612 ++++++++++++++------
drivers/net/ethernet/via/via-velocity.h | 35 +-
4 files changed, 480 insertions(+), 190 deletions(-)
create mode 100644 Documentation/devicetree/bindings/net/via-velocity.txt
--
1.7.9.5
next reply other threads:[~2013-04-28 3:16 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-28 3:16 Tony Prisk [this message]
2013-04-28 3:16 ` [PATCH 0/4] Add support for velocity network driver on platform devices Tony Prisk
2013-04-28 3:16 ` Tony Prisk
2013-04-28 3:16 ` [PATCH 1/4] net: velocity: Alphabetize #includes Tony Prisk
2013-04-28 3:16 ` Tony Prisk
2013-04-28 5:21 ` David Miller
2013-04-28 5:21 ` David Miller
2013-04-28 9:39 ` Tony Prisk
2013-04-28 9:39 ` Tony Prisk
2013-04-28 3:16 ` [PATCH 2/4] net: velocity: Rename vptr->dev to vptr->netdev Tony Prisk
2013-04-28 3:16 ` Tony Prisk
2013-04-28 3:16 ` [PATCH 3/4] net: velocity: Convert to generic dma functions Tony Prisk
2013-04-28 3:16 ` Tony Prisk
2013-04-28 3:31 ` Tony Prisk
2013-04-28 3:31 ` Tony Prisk
2013-04-28 3:16 ` [PATCH 4/4] net: velocity: Add platform device support to VIA velocity driver Tony Prisk
2013-04-28 3:16 ` Tony Prisk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1367119006-31280-1-git-send-email-linux@prisktech.co.nz \
--to=linux@prisktech.co.nz \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.