The patch titled m68knommu: cleanup port field access from uart struct in Coldfire serial driver has been added to the -mm tree. Its filename is m68knommu-cleanup-port-field-access-from-uart-struct-in-coldfire-serial-driver.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: m68knommu: cleanup port field access from uart struct in Coldfire serial driver From: Greg Ungerer <gerg@xxxxxxxxxxxx> Use port field instead of silly struct/pointer casting to get at port struct from local uart struct in ColdFire serial driver. Signed-off-by: Greg Ungerer <gerg@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/serial/mcf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/serial/mcf.c~m68knommu-cleanup-port-field-access-from-uart-struct-in-coldfire-serial-driver drivers/serial/mcf.c --- a/drivers/serial/mcf.c~m68knommu-cleanup-port-field-access-from-uart-struct-in-coldfire-serial-driver +++ a/drivers/serial/mcf.c @@ -273,7 +273,7 @@ static void mcf_set_termios(struct uart_ static void mcf_rx_chars(struct mcf_uart *pp) { - struct uart_port *port = (struct uart_port *) pp; + struct uart_port *port = &pp->port; unsigned char status, ch, flag; while ((status = readb(port->membase + MCFUART_USR)) & MCFUART_USR_RXREADY) { @@ -319,7 +319,7 @@ static void mcf_rx_chars(struct mcf_uart static void mcf_tx_chars(struct mcf_uart *pp) { - struct uart_port *port = (struct uart_port *) pp; + struct uart_port *port = &pp->port; struct circ_buf *xmit = &port->info->xmit; if (port->x_char) { _ Patches currently in -mm which might be from gerg@xxxxxxxxxxxx are m68knommu-fix-pread-pwrite-defines.patch m68knommu-use-raw-read-write-for-all-register-access-in-coldfire-timer.patch m68knommu-use-container_of-to-access-uart-struct-in-coldfire-serial-driver.patch m68knommu-cleanup-port-field-access-from-uart-struct-in-coldfire-serial-driver.patch m68knommu-use-array_size-in-coldfire-serial-driver.patch add-build-support-for-new-coldfire-serial-driver.patch add-configure-support-for-new-coldfire-serial-driver.patch m68knommu-platform-setup-for-5206-coldfire-uarts.patch m68knommu-platform-setup-for-5206e-coldfire-uarts.patch m68knommu-platform-setup-for-520x-coldfire-uarts.patch m68knommu-platform-setup-for-5249-coldfire-uarts.patch m68knommu-platform-setup-for-5272-coldfire-uarts.patch add-cmpxchg_local-to-m68knommu.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