diff options
| author | Jiri Kosina <jkosina@suse.cz> | 2011-09-15 15:08:05 +0200 | 
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2011-09-15 15:08:18 +0200 | 
| commit | e060c38434b2caa78efe7cedaff4191040b65a15 (patch) | |
| tree | 407361230bf6733f63d8e788e4b5e6566ee04818 /arch/sh/kernel/cpu/sh3/setup-sh770x.c | |
| parent | 10e4ac572eeffe5317019bd7330b6058a400dfc2 (diff) | |
| parent | cc39c6a9bbdebfcf1a7dee64d83bf302bc38d941 (diff) | |
| download | olio-linux-3.10-e060c38434b2caa78efe7cedaff4191040b65a15.tar.xz olio-linux-3.10-e060c38434b2caa78efe7cedaff4191040b65a15.zip  | |
Merge branch 'master' into for-next
Fast-forward merge with Linus to be able to merge patches
based on more recent version of the tree.
Diffstat (limited to 'arch/sh/kernel/cpu/sh3/setup-sh770x.c')
| -rw-r--r-- | arch/sh/kernel/cpu/sh3/setup-sh770x.c | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/sh3/setup-sh770x.c b/arch/sh/kernel/cpu/sh3/setup-sh770x.c index 4551ad647c2..3f3d5fe5892 100644 --- a/arch/sh/kernel/cpu/sh3/setup-sh770x.c +++ b/arch/sh/kernel/cpu/sh3/setup-sh770x.c @@ -19,6 +19,7 @@  #include <linux/serial.h>  #include <linux/serial_sci.h>  #include <linux/sh_timer.h> +#include <cpu/serial.h>  enum {  	UNUSED = 0, @@ -108,11 +109,14 @@ static struct platform_device rtc_device = {  static struct plat_sci_port scif0_platform_data = {  	.mapbase	= 0xfffffe80, +	.port_reg	= 0xa4000136,  	.flags		= UPF_BOOT_AUTOCONF,  	.scscr		= SCSCR_TE | SCSCR_RE,  	.scbrr_algo_id	= SCBRR_ALGO_2,  	.type		= PORT_SCI,  	.irqs		= { 23, 23, 23, 0 }, +	.ops		= &sh770x_sci_port_ops, +	.regshift	= 1,  };  static struct platform_device scif0_device = { @@ -132,6 +136,8 @@ static struct plat_sci_port scif1_platform_data = {  	.scbrr_algo_id	= SCBRR_ALGO_2,  	.type		= PORT_SCIF,  	.irqs		= { 56, 56, 56, 56 }, +	.ops		= &sh770x_sci_port_ops, +	.regtype	= SCIx_SH3_SCIF_REGTYPE,  };  static struct platform_device scif1_device = { @@ -146,11 +152,14 @@ static struct platform_device scif1_device = {      defined(CONFIG_CPU_SUBTYPE_SH7709)  static struct plat_sci_port scif2_platform_data = {  	.mapbase	= 0xa4000140, +	.port_reg	= SCIx_NOT_SUPPORTED,  	.flags		= UPF_BOOT_AUTOCONF,  	.scscr		= SCSCR_TE | SCSCR_RE,  	.scbrr_algo_id	= SCBRR_ALGO_2,  	.type		= PORT_IRDA,  	.irqs		= { 52, 52, 52, 52 }, +	.ops		= &sh770x_sci_port_ops, +	.regshift	= 1,  };  static struct platform_device scif2_device = {  |