The patch titled serial-uartlite: Support multiple devices has been added to the -mm tree. Its filename is serial-uartlite-support-multiple-devices.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: serial-uartlite: Support multiple devices From: Peter Korsgaard <jacmet@xxxxxxxxxx> Set port->line in probe() so multiple devices can be used. Signed-off-by: Peter Korsgaard <jacmet@xxxxxxxxxx> Acked-by: Olof Johansson <olof@xxxxxxxxx> Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/serial/uartlite.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/serial/uartlite.c~serial-uartlite-support-multiple-devices drivers/serial/uartlite.c --- a/drivers/serial/uartlite.c~serial-uartlite-support-multiple-devices +++ a/drivers/serial/uartlite.c @@ -437,6 +437,7 @@ static int __devinit ulite_probe(struct port->flags = UPF_BOOT_AUTOCONF; port->dev = &pdev->dev; port->type = PORT_UNKNOWN; + port->line = pdev->id; uart_add_one_port(&ulite_uart_driver, port); platform_set_drvdata(pdev, port); _ Patches currently in -mm which might be from jacmet@xxxxxxxxxx are serial-uartlite-driver.patch serial-uartlite-driver-fix.patch fix-serial-uartlite-after-global-pt_regs.patch serial-uartlite-support-multiple-devices.patch serial-uartlite-initialize-port-parameters-in-console_setup.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html