linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] serial: Remove old SC26XX driver
@ 2013-12-03 15:23 Alexander Shiyan
  2013-12-09  1:09 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Shiyan @ 2013-12-03 15:23 UTC (permalink / raw)
  To: linux-serial; +Cc: Greg Kroah-Hartman, Jiri Slaby, Alexander Shiyan

New driver for NXP (Philips) UART ICs was introduced in September 2012.
Old driver no longer used anywhere, this patch removes it.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 drivers/tty/serial/Kconfig  |  18 --
 drivers/tty/serial/Makefile |   1 -
 drivers/tty/serial/sc26xx.c | 749 --------------------------------------------
 3 files changed, 768 deletions(-)
 delete mode 100644 drivers/tty/serial/sc26xx.c

diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig
index a3817ab..7fbbbad 100644
--- a/drivers/tty/serial/Kconfig
+++ b/drivers/tty/serial/Kconfig
@@ -1146,31 +1146,13 @@ config SERIAL_QE
 	  This driver supports the QE serial ports on Freescale embedded
 	  PowerPC that contain a QUICC Engine.
 
-config SERIAL_SC26XX
-	tristate "SC2681/SC2692 serial port support"
-	depends on SNI_RM
-	select SERIAL_CORE
-	help
-	  This is a driver for the onboard serial ports of
-	  older RM400 machines.
-
-config SERIAL_SC26XX_CONSOLE
-	bool "Console on SC2681/SC2692 serial port"
-	depends on SERIAL_SC26XX=y
-	select SERIAL_CORE_CONSOLE
-	help
-	  Support for Console on SC2681/SC2692 serial ports.
-
 config SERIAL_SCCNXP
 	tristate "SCCNXP serial port support"
-	depends on !SERIAL_SC26XX
 	select SERIAL_CORE
-	default n
 	help
 	  This selects support for an advanced UART from NXP (Philips).
 	  Supported ICs are SCC2681, SCC2691, SCC2692, SC28L91, SC28L92,
 	  SC28L202, SCC68681 and SCC68692.
-	  Positioned as a replacement for the driver SC26XX.
 
 config SERIAL_SCCNXP_CONSOLE
 	bool "Console on SCCNXP serial port"
diff --git a/drivers/tty/serial/Makefile b/drivers/tty/serial/Makefile
index 3068c77..3680854 100644
--- a/drivers/tty/serial/Makefile
+++ b/drivers/tty/serial/Makefile
@@ -47,7 +47,6 @@ obj-$(CONFIG_SERIAL_M32R_SIO) += m32r_sio.o
 obj-$(CONFIG_SERIAL_MPSC) += mpsc.o
 obj-$(CONFIG_SERIAL_SB1250_DUART) += sb1250-duart.o
 obj-$(CONFIG_ETRAX_SERIAL) += crisv10.o
-obj-$(CONFIG_SERIAL_SC26XX) += sc26xx.o
 obj-$(CONFIG_SERIAL_SCCNXP) += sccnxp.o
 obj-$(CONFIG_SERIAL_JSM) += jsm/
 obj-$(CONFIG_SERIAL_TXX9) += serial_txx9.o
diff --git a/drivers/tty/serial/sc26xx.c b/drivers/tty/serial/sc26xx.c
deleted file mode 100644
index 887b4f7..0000000
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] serial: Remove old SC26XX driver
  2013-12-03 15:23 [PATCH] serial: Remove old SC26XX driver Alexander Shiyan
@ 2013-12-09  1:09 ` Greg Kroah-Hartman
  2013-12-09  8:25   ` Alexander Shiyan
  0 siblings, 1 reply; 3+ messages in thread
From: Greg Kroah-Hartman @ 2013-12-09  1:09 UTC (permalink / raw)
  To: Alexander Shiyan; +Cc: linux-serial, Jiri Slaby

On Tue, Dec 03, 2013 at 07:23:12PM +0400, Alexander Shiyan wrote:
> New driver for NXP (Philips) UART ICs was introduced in September 2012.
> Old driver no longer used anywhere, this patch removes it.
> 
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> ---
>  drivers/tty/serial/Kconfig  |  18 --
>  drivers/tty/serial/Makefile |   1 -
>  drivers/tty/serial/sc26xx.c | 749 --------------------------------------------
>  3 files changed, 768 deletions(-)
>  delete mode 100644 drivers/tty/serial/sc26xx.c

This patch doesn't apply to my tree for some reason, can you redo it
against the tty-next branch of the tty.git tree on git.kernel.org and
resend it?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] serial: Remove old SC26XX driver
  2013-12-09  1:09 ` Greg Kroah-Hartman
@ 2013-12-09  8:25   ` Alexander Shiyan
  0 siblings, 0 replies; 3+ messages in thread
From: Alexander Shiyan @ 2013-12-09  8:25 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-serial, Jiri Slaby

> On Tue, Dec 03, 2013 at 07:23:12PM +0400, Alexander Shiyan wrote:
> > New driver for NXP (Philips) UART ICs was introduced in September 2012.
> > Old driver no longer used anywhere, this patch removes it.
> > 
> > Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> > ---
> >  drivers/tty/serial/Kconfig  |  18 --
> >  drivers/tty/serial/Makefile |   1 -
> >  drivers/tty/serial/sc26xx.c | 749 --------------------------------------------
> >  3 files changed, 768 deletions(-)
> >  delete mode 100644 drivers/tty/serial/sc26xx.c
> 
> This patch doesn't apply to my tree for some reason, can you redo it
> against the tty-next branch of the tty.git tree on git.kernel.org and
> resend it?

Ok, will do.

---

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-12-09  8:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-03 15:23 [PATCH] serial: Remove old SC26XX driver Alexander Shiyan
2013-12-09  1:09 ` Greg Kroah-Hartman
2013-12-09  8:25   ` Alexander Shiyan

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).