All of lore.kernel.org
 help / color / mirror / Atom feed
* - small-fixes-for-jsm-driver.patch removed from -mm tree
@ 2007-05-09  2:46 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2007-05-09  2:46 UTC (permalink / raw)
  To: lsorense, Scott_Kilau, wendyx, mm-commits


The patch titled
     Small fixes for jsm driver
has been removed from the -mm tree.  Its filename was
     small-fixes-for-jsm-driver.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: Small fixes for jsm driver
From: Len Sorensen <lsorense@csclub.uwaterloo.ca>

The jsm driver fails when you try to use the TIOCSSERIAL ioctl.  The reason
is that the driver never sets uart_port.uartclk, causing the data received
using TIOCGSERIAL to not match the internal state of the driver.  This
patch fixes this problem by settings the uartclk to the value used by the
serial_core (16 times the baud base).

Signed-off-by: Len Sorensen <lsorense@csclub.uwaterloo.ca>
Cc: Scott H Kilau <Scott_Kilau@digi.com>
Cc: Wendy Xiong <wendyx@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/serial/jsm/jsm_tty.c |    1 +
 1 file changed, 1 insertion(+)

diff -puN drivers/serial/jsm/jsm_tty.c~small-fixes-for-jsm-driver drivers/serial/jsm/jsm_tty.c
--- a/drivers/serial/jsm/jsm_tty.c~small-fixes-for-jsm-driver
+++ a/drivers/serial/jsm/jsm_tty.c
@@ -448,6 +448,7 @@ int jsm_uart_port_init(struct jsm_board 
 			continue;
 
 		brd->channels[i]->uart_port.irq = brd->irq;
+		brd->channels[i]->uart_port.uartclk = 14745600;
 		brd->channels[i]->uart_port.type = PORT_JSM;
 		brd->channels[i]->uart_port.iotype = UPIO_MEM;
 		brd->channels[i]->uart_port.membase = brd->re_map_membase;
_

Patches currently in -mm which might be from lsorense@csclub.uwaterloo.ca are

origin.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-05-09  2:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-09  2:46 - small-fixes-for-jsm-driver.patch removed from -mm tree akpm

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.