diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2013-02-21 12:51:33 +0100 | 
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2013-02-21 12:51:33 +0100 | 
| commit | 8bfc245f9ad7bd4e461179e4e7852ef99b8b6144 (patch) | |
| tree | 0ad091f645fbc8318634599d278966a53d3922ee /arch/mips/ath79/dev-common.c | |
| parent | 612663a974065c3445e641d046769fe4c55a6438 (diff) | |
| parent | 535237cecab2b078114be712c67e89a0db61965f (diff) | |
| download | olio-linux-3.10-8bfc245f9ad7bd4e461179e4e7852ef99b8b6144.tar.xz olio-linux-3.10-8bfc245f9ad7bd4e461179e4e7852ef99b8b6144.zip  | |
Merge branch 'mips-next-3.9' of git://git.linux-mips.org/pub/scm/john/linux-john into mips-for-linux-next
Diffstat (limited to 'arch/mips/ath79/dev-common.c')
| -rw-r--r-- | arch/mips/ath79/dev-common.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/mips/ath79/dev-common.c b/arch/mips/ath79/dev-common.c index 45efc63b08b..9516aab2713 100644 --- a/arch/mips/ath79/dev-common.c +++ b/arch/mips/ath79/dev-common.c @@ -36,7 +36,7 @@ static struct resource ath79_uart_resources[] = {  static struct plat_serial8250_port ath79_uart_data[] = {  	{  		.mapbase	= AR71XX_UART_BASE, -		.irq		= ATH79_MISC_IRQ_UART, +		.irq		= ATH79_MISC_IRQ(3),  		.flags		= AR71XX_UART_FLAGS,  		.iotype		= UPIO_MEM32,  		.regshift	= 2, @@ -62,8 +62,8 @@ static struct resource ar933x_uart_resources[] = {  		.flags	= IORESOURCE_MEM,  	},  	{ -		.start	= ATH79_MISC_IRQ_UART, -		.end	= ATH79_MISC_IRQ_UART, +		.start	= ATH79_MISC_IRQ(3), +		.end	= ATH79_MISC_IRQ(3),  		.flags	= IORESOURCE_IRQ,  	},  }; @@ -90,7 +90,8 @@ void __init ath79_register_uart(void)  	if (soc_is_ar71xx() ||  	    soc_is_ar724x() ||  	    soc_is_ar913x() || -	    soc_is_ar934x()) { +	    soc_is_ar934x() || +	    soc_is_qca955x()) {  		ath79_uart_data[0].uartclk = clk_get_rate(clk);  		platform_device_register(&ath79_uart_device);  	} else if (soc_is_ar933x()) {  |