diff options
| author | Tejun Heo <tj@kernel.org> | 2013-01-23 09:31:01 -0800 | 
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2013-01-23 09:31:01 -0800 | 
| commit | c14afb82ffff5903a701a9fb737ac20f36d1f755 (patch) | |
| tree | 304dcc7b1d7b9a5f564f7e978228e61ef41fbef2 /arch/arm/mach-omap2/omap_hwmod_33xx_data.c | |
| parent | 0fdff3ec6d87856cdcc99e69cf42143fdd6c56b4 (diff) | |
| parent | 1d8549085377674224bf30a368284c391a3ce40e (diff) | |
| download | olio-linux-3.10-c14afb82ffff5903a701a9fb737ac20f36d1f755.tar.xz olio-linux-3.10-c14afb82ffff5903a701a9fb737ac20f36d1f755.zip  | |
Merge branch 'master' into for-3.9-async
To receive f56c3196f251012de9b3ebaff55732a9074fdaae ("async: fix
__lowest_in_progress()").
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod_33xx_data.c')
| -rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_33xx_data.c | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c index 32820d89f5b..646c14d9fdb 100644 --- a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c @@ -1118,8 +1118,7 @@ static struct omap_hwmod_class i2c_class = {  };  static struct omap_i2c_dev_attr i2c_dev_attr = { -	.flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE | -		  OMAP_I2C_FLAG_RESET_REGS_POSTIDLE, +	.flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE,  };  /* i2c1 */ @@ -2071,7 +2070,7 @@ static struct omap_hwmod_irq_info am33xx_usbss_mpu_irqs[] = {  	{ .name = "usbss-irq", .irq = 17 + OMAP_INTC_START, },  	{ .name = "musb0-irq", .irq = 18 + OMAP_INTC_START, },  	{ .name = "musb1-irq", .irq = 19 + OMAP_INTC_START, }, -	{ .irq = -1 + OMAP_INTC_START, }, +	{ .irq = -1, },  };  static struct omap_hwmod am33xx_usbss_hwmod = { @@ -2516,7 +2515,7 @@ static struct omap_hwmod_ocp_if am33xx_l4_hs__cpgmac0 = {  	.user		= OCP_USER_MPU,  }; -struct omap_hwmod_addr_space am33xx_mdio_addr_space[] = { +static struct omap_hwmod_addr_space am33xx_mdio_addr_space[] = {  	{  		.pa_start	= 0x4A101000,  		.pa_end		= 0x4A101000 + SZ_256 - 1, @@ -2524,7 +2523,7 @@ struct omap_hwmod_addr_space am33xx_mdio_addr_space[] = {  	{ }  }; -struct omap_hwmod_ocp_if am33xx_cpgmac0__mdio = { +static struct omap_hwmod_ocp_if am33xx_cpgmac0__mdio = {  	.master		= &am33xx_cpgmac0_hwmod,  	.slave		= &am33xx_mdio_hwmod,  	.addr		= am33xx_mdio_addr_space,  |