The patch titled serial: fix vr41xx_siu interface select has been added to the -mm tree. Its filename is serial-fix-vr41xx_siu-interface-select.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: serial: fix vr41xx_siu interface select From: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> only PORT_VR41XX_SIU can select interface. Signed-off-by: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/serial/vr41xx_siu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/serial/vr41xx_siu.c~serial-fix-vr41xx_siu-interface-select drivers/serial/vr41xx_siu.c --- a/drivers/serial/vr41xx_siu.c~serial-fix-vr41xx_siu-interface-select +++ a/drivers/serial/vr41xx_siu.c @@ -800,7 +800,8 @@ static int __init siu_console_setup(stru port->membase = ioremap(port->mapbase, siu_port_size(port)); } - vr41xx_select_siu_interface(SIU_INTERFACE_RS232C); + if (port->type == PORT_VR41XX_SIU) + vr41xx_select_siu_interface(SIU_INTERFACE_RS232C); if (options != NULL) uart_parse_options(options, &baud, &parity, &bits, &flow); _ Patches currently in -mm which might be from yoichi_yuasa@xxxxxxxxxxxxxx are origin.patch git-mips.patch git-mtd.patch serial-fix-section-mismatch-vr41xx_siu.patch serial-fix-vr41xx_siu-interface-select.patch serial-fix-vr41xx_siu-serial-console-support.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