All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/30] Serial and tty for 2.6.30
@ 2009-03-24 14:01 Alan Cox
  2009-03-24 14:01 ` [PATCH 01/30] disallow SERIAL_8250_PNP with SERIAL_8250_CONSOLE Alan Cox
                   ` (29 more replies)
  0 siblings, 30 replies; 49+ messages in thread
From: Alan Cox @ 2009-03-24 14:01 UTC (permalink / raw)
  To: linux-kernel, linux-serial, torvalds

This is mostly consolidation work and in part reflects the fact I've been
between jobs relaxing. There are quite a few niggling little bug fixes here
that will probably become candidates for 2.6.29.foo

Alan


---

Alan Cox (2):
      ucc: Fix leaky error path
      isicom: isicom kref leak fix

Alexander Beregalov (1):
      mux: fix build problem

Breno Leitao (3):
      icom: remove unused variables
      jsm: define init function as __devinit
      jsm: Fix the return variable and removing the unused retval.

Clark Williams (1):
      disallow SERIAL_8250_PNP with SERIAL_8250_CONSOLE

Danny Kukawka (1):
      8250_pnp.c: add another Wacom tablet

Graf Yang (2):
      blackfin: Subtract ANOMALY_05000230 on quot
      Use barrier instead of cpu_relax for early blackfin boot

Jiri Slaby (3):
      mxser: remove tty_port_tty_get from mxser_check_modem_status
      tty: moxa, fix refcounting in moxa_poll_port
      PCI: quirks, don't mark one netmos as class other

Kay Sievers (1):
      vcs: hook sysfs devices into object lifetime instead of "binding"

Matthew Garrett (1):
      serial: Update PNP IDs

Michael Hennerich (1):
      blackfin: BF538/9 serial uart support

Mike Frysinger (2):
      blackfin: Use unsigned long for flags with irq functions
      blackfin: Explain why we cannot cpu_relax() in early serial code

Roel Kluin (1):
      rio: addition has higher precedence than ?:

Scott James Remnant (5):
      riscom8: Auto-load riscom8 module when device opened.
      usb: Auto-load cdc_acm module when device opened.
      specialix: Auto-load specialix module when device opened.
      cyclades: Auto-load cyclades module when device opened.
      applicom: Auto-load applicom module when device opened.

Shawn Bohrer (1):
      8250_pci: add support for National Instruments 843x RS232 devices

Sonic Zhang (2):
      Fix DMA rx ring buffer handling
      blackfin: Fix tty compile error in PIO mode

Sukadev Bhattiprolu (1):
      devpts: must release s_umount on error

Xiaotian Feng (1):
      cpm_uart: fix non-console port startup bug


 drivers/char/applicom.c                 |    1 
 drivers/char/cyclades.c                 |    2 
 drivers/char/isicom.c                   |    1 
 drivers/char/moxa.c                     |    9 -
 drivers/char/mxser.c                    |    1 
 drivers/char/rio/rio_linux.c            |    2 
 drivers/char/riscom8.c                  |    2 
 drivers/char/specialix.c                |    1 
 drivers/char/vc_screen.c                |   16 +
 drivers/char/vt.c                       |    5 
 drivers/pci/quirks.c                    |    6 
 drivers/serial/8250_pci.c               |  411 +++++++++++++++++++++++++++++++
 drivers/serial/8250_pnp.c               |    7 -
 drivers/serial/Kconfig                  |    4 
 drivers/serial/bfin_5xx.c               |   22 +-
 drivers/serial/cpm_uart/cpm_uart_core.c |   14 +
 drivers/serial/icom.c                   |   14 -
 drivers/serial/jsm/jsm_driver.c         |    9 -
 drivers/serial/jsm/jsm_tty.c            |    4 
 drivers/serial/ucc_uart.c               |    1 
 drivers/usb/class/cdc-acm.c             |    2 
 fs/devpts/inode.c                       |    2 
 include/linux/console.h                 |    4 
 include/linux/pci_ids.h                 |   26 ++
 include/linux/serial_core.h             |    2 
 25 files changed, 516 insertions(+), 52 deletions(-)

-- 

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

end of thread, other threads:[~2009-03-25 23:04 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-24 14:01 [PATCH 00/30] Serial and tty for 2.6.30 Alan Cox
2009-03-24 14:01 ` [PATCH 01/30] disallow SERIAL_8250_PNP with SERIAL_8250_CONSOLE Alan Cox
2009-03-24 15:10   ` Andrey Panin
2009-03-24 15:22     ` Alan Cox
2009-03-24 20:59       ` Matthew Garrett
2009-03-24 21:26         ` Alan Cox
2009-03-24 21:34           ` Matthew Garrett
2009-03-24 21:38             ` Alan Cox
2009-03-24 21:43               ` Matthew Garrett
2009-03-24 22:18                 ` Alan Cox
2009-03-24 22:29                   ` Matthew Garrett
2009-03-24 22:36                     ` Alan Cox
2009-03-24 22:58                       ` Matthew Garrett
2009-03-25 14:22                         ` Clark Williams
2009-03-25 15:18                           ` Clark Williams
2009-03-25 15:32                             ` Alan Cox
2009-03-25 15:38                               ` Matthew Garrett
2009-03-25 17:02                                 ` Linus Torvalds
2009-03-25 23:04                         ` Bjorn Helgaas
2009-03-24 14:02 ` [PATCH 02/30] 8250_pnp.c: add another Wacom tablet Alan Cox
2009-03-24 14:02 ` [PATCH 03/30] serial: Update PNP IDs Alan Cox
2009-03-24 14:02 ` [PATCH 04/30] jsm: Fix the return variable and removing the unused retval Alan Cox
2009-03-24 14:02 ` [PATCH 05/30] PCI: quirks, don't mark one netmos as class other Alan Cox
2009-03-24 14:02 ` [PATCH 06/30] devpts: must release s_umount on error Alan Cox
2009-03-24 14:02 ` [PATCH 07/30] cpm_uart: fix non-console port startup bug Alan Cox
2009-03-24 14:03 ` [PATCH 08/30] Use barrier instead of cpu_relax for early blackfin boot Alan Cox
2009-03-24 14:03 ` [PATCH 09/30] blackfin: Explain why we cannot cpu_relax() in early serial code Alan Cox
2009-03-24 14:03 ` [PATCH 10/30] blackfin: BF538/9 serial uart support Alan Cox
2009-03-24 14:03 ` [PATCH 11/30] blackfin: Use unsigned long for flags with irq functions Alan Cox
2009-03-24 14:03 ` [PATCH 12/30] blackfin: Fix tty compile error in PIO mode Alan Cox
2009-03-24 14:03 ` [PATCH 13/30] Fix DMA rx ring buffer handling Alan Cox
2009-03-24 14:04 ` [PATCH 14/30] blackfin: Subtract ANOMALY_05000230 on quot Alan Cox
2009-03-24 14:04 ` [PATCH 15/30] applicom: Auto-load applicom module when device opened Alan Cox
2009-03-24 14:04 ` [PATCH 16/30] cyclades: Auto-load cyclades " Alan Cox
2009-03-24 14:04 ` [PATCH 17/30] specialix: Auto-load specialix " Alan Cox
2009-03-24 14:04 ` [PATCH 18/30] usb: Auto-load cdc_acm " Alan Cox
2009-03-24 14:05 ` [PATCH 19/30] riscom8: Auto-load riscom8 " Alan Cox
2009-03-24 14:05 ` [PATCH 20/30] rio: addition has higher precedence than ?: Alan Cox
2009-03-24 14:05 ` [PATCH 21/30] vcs: hook sysfs devices into object lifetime instead of "binding" Alan Cox
2009-03-24 14:05 ` [PATCH 22/30] jsm: define init function as __devinit Alan Cox
2009-03-24 14:05 ` [PATCH 23/30] icom: remove unused variables Alan Cox
2009-03-24 14:05 ` [PATCH 24/30] isicom: isicom kref leak fix Alan Cox
2009-03-24 14:06 ` [PATCH 25/30] tty: moxa, fix refcounting in moxa_poll_port Alan Cox
2009-03-24 14:06 ` [PATCH 26/30] mxser: remove tty_port_tty_get from mxser_check_modem_status Alan Cox
2009-03-24 14:06 ` [PATCH 27/30] ucc: Fix leaky error path Alan Cox
2009-03-24 14:06   ` Alan Cox
2009-03-24 14:06 ` [PATCH 28/30] mux: fix build problem Alan Cox
2009-03-24 14:06 ` [PATCH 29/30] 8250_pci: add support for National Instruments 843x RS232 devices Alan Cox
2009-03-24 14:07 ` [PATCH 30/30] 8250_pci: ni8420 support Alan Cox

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.