3.16.52-rc1 review patch. If anyone has any objections, please let me know.
------------------ From: Oswald Buddenhagen <oswald.buddenha...@gmx.de> commit b084116f8587b222a2c5ef6dcd846f40f24b9420 upstream. Without UPF_FIXED_TYPE, the data from the PORT_AR7 uart_config entry is never copied, resulting in a dead port. Fixes: 154615d55459 ("MIPS: AR7: Use correct UART port type") Signed-off-by: Oswald Buddenhagen <oswald.buddenha...@gmx.de> [jonas.gorski: add Fixes tag] Signed-off-by: Jonas Gorski <jonas.gor...@gmail.com> Reviewed-by: Florian Fainelli <f.faine...@gmail.com> Cc: Ralf Baechle <r...@linux-mips.org> Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> Cc: Yoshihiro YUNOMAE <yoshihiro.yunomae...@hitachi.com> Cc: Nicolas Schichan <nschic...@freebox.fr> Cc: Oswald Buddenhagen <oswald.buddenha...@gmx.de> Cc: linux-m...@linux-mips.org Cc: linux-ser...@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/17543/ Signed-off-by: James Hogan <jho...@kernel.org> Signed-off-by: Ben Hutchings <b...@decadent.org.uk> --- arch/mips/ar7/platform.c | 1 + 1 file changed, 1 insertion(+) --- a/arch/mips/ar7/platform.c +++ b/arch/mips/ar7/platform.c @@ -581,6 +581,7 @@ static int __init ar7_register_uarts(voi uart_port.type = PORT_AR7; uart_port.uartclk = clk_get_rate(bus_clk) / 2; uart_port.iotype = UPIO_MEM32; + uart_port.flags = UPF_FIXED_TYPE; uart_port.regshift = 2; uart_port.line = 0;