The patch titled serial: fix compile warning about putc has been added to the -mm tree. Its filename is serial-fix-compile-warning-about-putc.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 compile warning about putc From: Yinghai Lu <Yinghai.Lu@xxxxxxx> drivers/serial/8250_early.c:80: warning: conflicting types for built-in function `putc' Signed-off-by: Yinghai Lu <yinghai.lu@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/serial/8250_early.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/serial/8250_early.c~serial-fix-compile-warning-about-putc drivers/serial/8250_early.c --- a/drivers/serial/8250_early.c~serial-fix-compile-warning-about-putc +++ a/drivers/serial/8250_early.c @@ -76,7 +76,7 @@ static void __init wait_for_xmitr(struct } } -static void __init putc(struct uart_port *port, int c) +static void __init serial_putc(struct uart_port *port, int c) { wait_for_xmitr(port); serial_out(port, UART_TX, c); @@ -91,7 +91,7 @@ static void __init early_serial8250_writ ier = serial_in(port, UART_IER); serial_out(port, UART_IER, 0); - uart_console_write(port, s, count, putc); + uart_console_write(port, s, count, serial_putc); /* Wait for transmitter to become empty and restore the IER */ wait_for_xmitr(port); _ Patches currently in -mm which might be from Yinghai.Lu@xxxxxxx are serial-fix-compile-warning-about-putc.patch serial-keep-the-dtr-setting-for-serial-console.patch git-x86.patch x86_64-set-cpu_index-to-nr_cpus-instead-of-0.patch x86_64-do-not-clear-cpu_index-set-by-store_cpu_info.patch x86-typo-about-sequence-of-cpu_index-and-cpu_online-in.patch kernel-printkc-concerns-about-the-console-handover.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