* [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers
@ 2012-03-08 4:28 Stephen Rothwell
2012-03-08 4:33 ` [PATCH 2/7] net: powerpc: remove the legacy iSeries ethernet driver Stephen Rothwell
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Stephen Rothwell @ 2012-03-08 4:28 UTC (permalink / raw)
To: Benjamin Herrenschmidt
Cc: ppc-dev, James E.J. Bottomley, netdev, Alan Cox, Brian King,
David Miller, Greg Kroah-Hartman, linux-scsi, linux-serial,
Jens Axboe, LKML
[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]
Hi all,
This series of patches removes all the legacy iSeries platform specific
drivers (and the iSeries specific part of one). The legacy iSeries
platform main code has already bee removed along with CONFIG_PPC_ISERIES,
so none of this code is selectable or needed any more.
It would probably be easiest if all these patches were merged via the
powerpc tree to eliminate any dependencies between them. Their impact on
generic code is very small.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
arch/powerpc/include/asm/iseries/hv_call_event.h | 201 ---
arch/powerpc/include/asm/iseries/hv_lp_event.h | 162 --
arch/powerpc/include/asm/iseries/iommu.h | 37 -
arch/powerpc/include/asm/iseries/vio.h | 265 ----
arch/powerpc/kernel/vio.c | 18 +-
drivers/base/driver.c | 30 -
drivers/block/viodasd.c | 809 ----------
drivers/cdrom/viocd.c | 739 ----------
drivers/char/viotape.c | 1041 -------------
drivers/net/ethernet/ibm/Kconfig | 4 -
drivers/net/ethernet/ibm/Makefile | 1 -
drivers/net/ethernet/ibm/iseries_veth.c | 1710 ----------------------
drivers/scsi/Kconfig | 3 +-
drivers/scsi/ibmvscsi/Makefile | 1 -
drivers/scsi/ibmvscsi/ibmvscsi.c | 12 +-
drivers/scsi/ibmvscsi/ibmvscsi.h | 1 -
drivers/scsi/ibmvscsi/iseries_vscsi.c | 173 ---
drivers/tty/hvc/Kconfig | 10 -
drivers/tty/hvc/Makefile | 1 -
drivers/tty/hvc/hvc_iseries.c | 599 --------
drivers/tty/serial/Kconfig | 2 +-
include/linux/device.h | 4 -
22 files changed, 5 insertions(+), 5818 deletions(-)
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 2/7] net: powerpc: remove the legacy iSeries ethernet driver
2012-03-08 4:28 [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers Stephen Rothwell
@ 2012-03-08 4:33 ` Stephen Rothwell
2012-03-08 6:53 ` David Miller
2012-03-08 6:53 ` [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers David Miller
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2012-03-08 4:33 UTC (permalink / raw)
To: Benjamin Herrenschmidt; +Cc: David Miller, netdev, ppc-dev, LKML
[-- Attachment #1: Type: text/plain, Size: 1623 bytes --]
This driver is specific to the PowerPC legcay iSeries platform which is
being removed.
Cc: David Miller <davem@davemloft.net>
Cc: <netdev@vger.kernel.org>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
drivers/net/ethernet/ibm/Kconfig | 4 -
drivers/net/ethernet/ibm/Makefile | 1 -
drivers/net/ethernet/ibm/iseries_veth.c | 1710 -------------------------------
3 files changed, 0 insertions(+), 1715 deletions(-)
delete mode 100644 drivers/net/ethernet/ibm/iseries_veth.c
diff --git a/drivers/net/ethernet/ibm/Kconfig b/drivers/net/ethernet/ibm/Kconfig
index 9e16f3f..b9773d2 100644
--- a/drivers/net/ethernet/ibm/Kconfig
+++ b/drivers/net/ethernet/ibm/Kconfig
@@ -29,10 +29,6 @@ config IBMVETH
To compile this driver as a module, choose M here. The module will
be called ibmveth.
-config ISERIES_VETH
- tristate "iSeries Virtual Ethernet driver support"
- depends on PPC_ISERIES
-
source "drivers/net/ethernet/ibm/emac/Kconfig"
config EHEA
diff --git a/drivers/net/ethernet/ibm/Makefile b/drivers/net/ethernet/ibm/Makefile
index 5a7d4e9..2f04e71 100644
--- a/drivers/net/ethernet/ibm/Makefile
+++ b/drivers/net/ethernet/ibm/Makefile
@@ -3,6 +3,5 @@
#
obj-$(CONFIG_IBMVETH) += ibmveth.o
-obj-$(CONFIG_ISERIES_VETH) += iseries_veth.o
obj-$(CONFIG_IBM_EMAC) += emac/
obj-$(CONFIG_EHEA) += ehea/
diff --git a/drivers/net/ethernet/ibm/iseries_veth.c b/drivers/net/ethernet/ibm/iseries_veth.c
deleted file mode 100644
index acc31af..0000000
--
1.7.9.1
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers
2012-03-08 4:28 [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers Stephen Rothwell
2012-03-08 4:33 ` [PATCH 2/7] net: powerpc: remove the legacy iSeries ethernet driver Stephen Rothwell
@ 2012-03-08 6:53 ` David Miller
2012-03-08 10:37 ` Jens Axboe
2012-03-08 17:59 ` Greg Kroah-Hartman
3 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2012-03-08 6:53 UTC (permalink / raw)
To: sfr
Cc: benh, linuxppc-dev, JBottomley, netdev, alan, brking, gregkh,
linux-scsi, linux-serial, axboe, linux-kernel
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 8 Mar 2012 15:28:53 +1100
> It would probably be easiest if all these patches were merged via the
> powerpc tree to eliminate any dependencies between them. Their impact on
> generic code is very small.
No objections.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/7] net: powerpc: remove the legacy iSeries ethernet driver
2012-03-08 4:33 ` [PATCH 2/7] net: powerpc: remove the legacy iSeries ethernet driver Stephen Rothwell
@ 2012-03-08 6:53 ` David Miller
0 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2012-03-08 6:53 UTC (permalink / raw)
To: sfr; +Cc: benh, netdev, linuxppc-dev, linux-kernel
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 8 Mar 2012 15:33:53 +1100
> This driver is specific to the PowerPC legcay iSeries platform which is
> being removed.
>
> Cc: David Miller <davem@davemloft.net>
> Cc: <netdev@vger.kernel.org>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: David S. Miller <davem@davemloft.net>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers
2012-03-08 4:28 [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers Stephen Rothwell
2012-03-08 4:33 ` [PATCH 2/7] net: powerpc: remove the legacy iSeries ethernet driver Stephen Rothwell
2012-03-08 6:53 ` [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers David Miller
@ 2012-03-08 10:37 ` Jens Axboe
2012-03-08 17:59 ` Greg Kroah-Hartman
3 siblings, 0 replies; 6+ messages in thread
From: Jens Axboe @ 2012-03-08 10:37 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Benjamin Herrenschmidt, ppc-dev, James E.J. Bottomley, netdev,
Alan Cox, Brian King, David Miller, Greg Kroah-Hartman,
linux-scsi, linux-serial, LKML
On 03/08/2012 05:28 AM, Stephen Rothwell wrote:
> It would probably be easiest if all these patches were merged via the
> powerpc tree to eliminate any dependencies between them. Their impact on
> generic code is very small.
Go ahead, no point in doing otherwise.
--
Jens Axboe
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers
2012-03-08 4:28 [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers Stephen Rothwell
` (2 preceding siblings ...)
2012-03-08 10:37 ` Jens Axboe
@ 2012-03-08 17:59 ` Greg Kroah-Hartman
3 siblings, 0 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2012-03-08 17:59 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Benjamin Herrenschmidt, ppc-dev, James E.J. Bottomley, netdev,
Alan Cox, Brian King, David Miller, linux-scsi, linux-serial,
Jens Axboe, LKML
On Thu, Mar 08, 2012 at 03:28:53PM +1100, Stephen Rothwell wrote:
> Hi all,
>
> This series of patches removes all the legacy iSeries platform specific
> drivers (and the iSeries specific part of one). The legacy iSeries
> platform main code has already bee removed along with CONFIG_PPC_ISERIES,
> so none of this code is selectable or needed any more.
>
> It would probably be easiest if all these patches were merged via the
> powerpc tree to eliminate any dependencies between them. Their impact on
> generic code is very small.
No objection from me at all.
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-03-08 17:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-08 4:28 [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers Stephen Rothwell
2012-03-08 4:33 ` [PATCH 2/7] net: powerpc: remove the legacy iSeries ethernet driver Stephen Rothwell
2012-03-08 6:53 ` David Miller
2012-03-08 6:53 ` [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers David Miller
2012-03-08 10:37 ` Jens Axboe
2012-03-08 17:59 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).