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 /drivers/tty/serial/sh-sci.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 'drivers/tty/serial/sh-sci.c')
| -rw-r--r-- | drivers/tty/serial/sh-sci.c | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index 1945c70539c..aff9d612dff 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c @@ -207,6 +207,25 @@ static struct plat_sci_reg sci_regmap[SCIx_NR_REGTYPES][SCIx_NR_REGS] = {  	},  	/* +	 * Common SH-2(A) SCIF definitions for ports with FIFO data +	 * count registers. +	 */ +	[SCIx_SH2_SCIF_FIFODATA_REGTYPE] = { +		[SCSMR]		= { 0x00, 16 }, +		[SCBRR]		= { 0x04,  8 }, +		[SCSCR]		= { 0x08, 16 }, +		[SCxTDR]	= { 0x0c,  8 }, +		[SCxSR]		= { 0x10, 16 }, +		[SCxRDR]	= { 0x14,  8 }, +		[SCFCR]		= { 0x18, 16 }, +		[SCFDR]		= { 0x1c, 16 }, +		[SCTFDR]	= sci_reg_invalid, +		[SCRFDR]	= sci_reg_invalid, +		[SCSPTR]	= { 0x20, 16 }, +		[SCLSR]		= { 0x24, 16 }, +	}, + +	/*  	 * Common SH-3 SCIF definitions.  	 */  	[SCIx_SH3_SCIF_REGTYPE] = {  |