* [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers
@ 2012-03-08  4:28 Stephen Rothwell
  2012-03-08  4:39 ` [PATCH 5/7] tty: powerpc: remove SERIAL_ICOM dependency on PPC_ISERIES 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 5/7] tty: powerpc: remove SERIAL_ICOM dependency on PPC_ISERIES
  2012-03-08  4:28 [PATCH 0/7] powerpc: remove the legacy iSeries platform specific drivers Stephen Rothwell
@ 2012-03-08  4:39 ` Stephen Rothwell
  2012-03-08 11:18   ` Alan Cox
  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:39 UTC (permalink / raw)
  To: Benjamin Herrenschmidt
  Cc: Alan Cox, Greg Kroah-Hartman, linux-serial, ppc-dev, LKML
[-- Attachment #1: Type: text/plain, Size: 880 bytes --]
The PowerPC legacy iSeries platform is being removed so this is no
longer selectable.
Cc: Alan Cox <alan@linux.intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-serial@vger.kernel.org
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 drivers/tty/serial/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig
index 2de9924..59e7983 100644
--- a/drivers/tty/serial/Kconfig
+++ b/drivers/tty/serial/Kconfig
@@ -853,7 +853,7 @@ config SERIAL_MPC52xx_CONSOLE_BAUD
 
 config SERIAL_ICOM
 	tristate "IBM Multiport Serial Adapter"
-	depends on PCI && (PPC_ISERIES || PPC_PSERIES)
+	depends on PCI && PPC_PSERIES
 	select SERIAL_CORE
 	select FW_LOADER
 	help
-- 
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:39 ` [PATCH 5/7] tty: powerpc: remove SERIAL_ICOM dependency on PPC_ISERIES 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 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:39 ` [PATCH 5/7] tty: powerpc: remove SERIAL_ICOM dependency on PPC_ISERIES 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 5/7] tty: powerpc: remove SERIAL_ICOM dependency on PPC_ISERIES
  2012-03-08  4:39 ` [PATCH 5/7] tty: powerpc: remove SERIAL_ICOM dependency on PPC_ISERIES Stephen Rothwell
@ 2012-03-08 11:18   ` Alan Cox
  0 siblings, 0 replies; 6+ messages in thread
From: Alan Cox @ 2012-03-08 11:18 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Benjamin Herrenschmidt, Greg Kroah-Hartman, linux-serial, ppc-dev,
	LKML
On Thu, 8 Mar 2012 15:39:31 +1100
Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> The PowerPC legacy iSeries platform is being removed so this is no
> longer selectable.
Fine by me
^ 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:39 ` [PATCH 5/7] tty: powerpc: remove SERIAL_ICOM dependency on PPC_ISERIES Stephen Rothwell
2012-03-08 11:18   ` Alan Cox
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).