Linux Serial subsystem development
 help / color / mirror / Atom feed
* [PATCH] serial: sh-sci: Temporarily Revert "implement FIFO threshold register setting"
@ 2017-02-07 13:00 Arnd Bergmann
  2017-02-07 13:06 ` Geert Uytterhoeven
  0 siblings, 1 reply; 2+ messages in thread
From: Arnd Bergmann @ 2017-02-07 13:00 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Arnd Bergmann, Jiri Slaby, Geert Uytterhoeven, Laurent Pinchart,
	Peter Hurley, Simon Horman, Ulrich Hecht, linux-serial,
	linux-kernel

Patch the first three patches out of seven were applied, up to commit
a380ed461f66 ("serial: sh-sci: implement FIFO threshold register setting"),
which introduces a new helper function. This is not called until the next
following patch, so we now get a build warning:

drivers/tty/serial/sh-sci.c:977:12: error: 'scif_set_rtrg' defined but not used [-Werror=unused-function]

The patch is good, but I think we should either apply the following patches
as well, or revert this one to get a clean build.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
This is mainly a notification that I've applied the revert to my randconfig
test tree, if you plan to merge the following patches for 4.11, we won't
need this one.
---
 drivers/tty/serial/sh-sci.c | 59 ---------------------------------------------
 1 file changed, 59 deletions(-)

diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c
index 050d028cf2a1..5044a5e5d340 100644
--- a/drivers/tty/serial/sh-sci.c
+++ b/drivers/tty/serial/sh-sci.c
@@ -974,65 +974,6 @@ static int sci_handle_breaks(struct uart_port *port)
 	return copied;
 }
 
-static int scif_set_rtrg(struct uart_port *port, int rx_trig)
-{
-	unsigned int bits;
-
-	if (rx_trig < 1)
-		rx_trig = 1;
-	if (rx_trig >= port->fifosize)
-		rx_trig = port->fifosize;
-
-	/* HSCIF can be set to an arbitrary level. */
-	if (sci_getreg(port, HSRTRGR)->size) {
-		serial_port_out(port, HSRTRGR, rx_trig);
-		return rx_trig;
-	}
-
-	switch (port->type) {
-	case PORT_SCIF:
-		if (rx_trig < 4) {
-			bits = 0;
-			rx_trig = 1;
-		} else if (rx_trig < 8) {
-			bits = SCFCR_RTRG0;
-			rx_trig = 4;
-		} else if (rx_trig < 14) {
-			bits = SCFCR_RTRG1;
-			rx_trig = 8;
-		} else {
-			bits = SCFCR_RTRG0 | SCFCR_RTRG1;
-			rx_trig = 14;
-		}
-		break;
-	case PORT_SCIFA:
-	case PORT_SCIFB:
-		if (rx_trig < 16) {
-			bits = 0;
-			rx_trig = 1;
-		} else if (rx_trig < 32) {
-			bits = SCFCR_RTRG0;
-			rx_trig = 16;
-		} else if (rx_trig < 48) {
-			bits = SCFCR_RTRG1;
-			rx_trig = 32;
-		} else {
-			bits = SCFCR_RTRG0 | SCFCR_RTRG1;
-			rx_trig = 48;
-		}
-		break;
-	default:
-		WARN(1, "unknown FIFO configuration");
-		return 1;
-	}
-
-	serial_port_out(port, SCFCR,
-		(serial_port_in(port, SCFCR) &
-		~(SCFCR_RTRG1 | SCFCR_RTRG0)) | bits);
-
-	return rx_trig;
-}
-
 #ifdef CONFIG_SERIAL_SH_SCI_DMA
 static void sci_dma_tx_complete(void *arg)
 {
-- 
2.9.0

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

* Re: [PATCH] serial: sh-sci: Temporarily Revert "implement FIFO threshold register setting"
  2017-02-07 13:00 [PATCH] serial: sh-sci: Temporarily Revert "implement FIFO threshold register setting" Arnd Bergmann
@ 2017-02-07 13:06 ` Geert Uytterhoeven
  0 siblings, 0 replies; 2+ messages in thread
From: Geert Uytterhoeven @ 2017-02-07 13:06 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Greg Kroah-Hartman, Jiri Slaby, Geert Uytterhoeven,
	Laurent Pinchart, Peter Hurley, Simon Horman, Ulrich Hecht,
	linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org

Hi Arnd,

On Tue, Feb 7, 2017 at 2:00 PM, Arnd Bergmann <arnd@arndb.de> wrote:
> Patch the first three patches out of seven were applied, up to commit
> a380ed461f66 ("serial: sh-sci: implement FIFO threshold register setting"),
> which introduces a new helper function. This is not called until the next
> following patch, so we now get a build warning:
>
> drivers/tty/serial/sh-sci.c:977:12: error: 'scif_set_rtrg' defined but not used [-Werror=unused-function]
>
> The patch is good, but I think we should either apply the following patches
> as well, or revert this one to get a clean build.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
> This is mainly a notification that I've applied the revert to my randconfig
> test tree, if you plan to merge the following patches for 4.11, we won't
> need this one.

The follow-up commits were added to tty/tty-next earlier today.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

end of thread, other threads:[~2017-02-07 13:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-07 13:00 [PATCH] serial: sh-sci: Temporarily Revert "implement FIFO threshold register setting" Arnd Bergmann
2017-02-07 13:06 ` Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox