diff options
Diffstat (limited to 'arch/arm/cpu/armv7/omap4/hw_data.c')
| -rw-r--r-- | arch/arm/cpu/armv7/omap4/hw_data.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/arm/cpu/armv7/omap4/hw_data.c b/arch/arm/cpu/armv7/omap4/hw_data.c index 18efa6c82..892d0162c 100644 --- a/arch/arm/cpu/armv7/omap4/hw_data.c +++ b/arch/arm/cpu/armv7/omap4/hw_data.c @@ -39,6 +39,8 @@ struct dplls const **dplls_data =  			(struct dplls const **) OMAP_SRAM_SCRATCH_DPLLS_PTR;  struct vcores_data const **omap_vcores =  		(struct vcores_data const **) OMAP_SRAM_SCRATCH_VCORES_PTR; +struct omap_sys_ctrl_regs const **ctrl = +	(struct omap_sys_ctrl_regs const **)OMAP4_SRAM_SCRATCH_SYS_CTRL;  /*   * The M & N values in the following tables are created using the @@ -470,4 +472,5 @@ void hw_data_init(void)  		printf("\n INVALID OMAP REVISION ");  	} +	*ctrl = &omap4_ctrl;  } |