diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-21 21:56:56 +0000 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-11-21 21:56:56 +0000 | 
| commit | 2d13ccaa8797d7e599f3792aed4b1e44b47f94a5 (patch) | |
| tree | 7079c1610373fc6709c3a285a53099beaf21295a /arch/blackfin/mach-bf527/boards/tll6527m.c | |
| parent | 59136ef3c596606d3eef920dc3e0fdfa2ce52c6f (diff) | |
| parent | 11f1c5de7be06bbb51363002ebc4d00edc2677df (diff) | |
| download | olio-linux-3.10-2d13ccaa8797d7e599f3792aed4b1e44b47f94a5.tar.xz olio-linux-3.10-2d13ccaa8797d7e599f3792aed4b1e44b47f94a5.zip  | |
Merge branch 'irqchip-consolidation' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into devel-stable
Conflicts:
	arch/arm/mach-omap2/board-4430sdp.c
	arch/arm/mach-omap2/board-omap4panda.c
	arch/arm/mach-omap2/include/mach/omap4-common.h
	arch/arm/plat-omap/include/plat/irqs.h
The changes to omap4-common.h were moved to arch/arm/mach-omap2/common.h
and the other trivial conflicts resolved.  The now empty ifdef in irqs.h
was also eliminated.
Diffstat (limited to 'arch/blackfin/mach-bf527/boards/tll6527m.c')
| -rw-r--r-- | arch/blackfin/mach-bf527/boards/tll6527m.c | 14 | 
1 files changed, 12 insertions, 2 deletions
diff --git a/arch/blackfin/mach-bf527/boards/tll6527m.c b/arch/blackfin/mach-bf527/boards/tll6527m.c index 76dbc03a8d4..3a92c4318d2 100644 --- a/arch/blackfin/mach-bf527/boards/tll6527m.c +++ b/arch/blackfin/mach-bf527/boards/tll6527m.c @@ -496,8 +496,13 @@ static struct resource bfin_uart0_resources[] = {  		.flags = IORESOURCE_MEM,  	},  	{ +		.start = IRQ_UART0_TX, +		.end = IRQ_UART0_TX, +		.flags = IORESOURCE_IRQ, +	}, +	{  		.start = IRQ_UART0_RX, -		.end = IRQ_UART0_RX+1, +		.end = IRQ_UART0_RX,  		.flags = IORESOURCE_IRQ,  	},  	{ @@ -540,8 +545,13 @@ static struct resource bfin_uart1_resources[] = {  		.flags = IORESOURCE_MEM,  	},  	{ +		.start = IRQ_UART1_TX, +		.end = IRQ_UART1_TX, +		.flags = IORESOURCE_IRQ, +	}, +	{  		.start = IRQ_UART1_RX, -		.end = IRQ_UART1_RX+1, +		.end = IRQ_UART1_RX,  		.flags = IORESOURCE_IRQ,  	},  	{  |