diff options
| author | mattis fjallstrom <mattis@acm.org> | 2015-05-20 13:10:59 -0700 |
|---|---|---|
| committer | mattis fjallstrom <mattis@acm.org> | 2015-05-20 13:10:59 -0700 |
| commit | e8980e2a6a7392ae5a1f882d1ba01e03ac83f899 (patch) | |
| tree | bf789a6122e93ca74bd0c42ff0e1012fb6681329 /arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |
| parent | fee79e7e6be98cf572d2535f3abbbdb26c50d63f (diff) | |
| download | olio-linux-3.10-e8980e2a6a7392ae5a1f882d1ba01e03ac83f899.tar.xz olio-linux-3.10-e8980e2a6a7392ae5a1f882d1ba01e03ac83f899.zip | |
Removing security clocks from kernel.
Change-Id: Id04f824e4fa8beb94506d083d5f3c0a8778bcfd8
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod_3xxx_data.c')
| -rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index 7c5a6b81875..f9b8a4c965a 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c @@ -3818,6 +3818,7 @@ static struct omap_hwmod_ocp_if *omap34xx_gp_hwmod_ocp_ifs[] __initdata = { NULL }; + static struct omap_hwmod_ocp_if *omap36xx_gp_hwmod_ocp_ifs[] __initdata = { &omap3xxx_l4_sec__timer12, &omap3xxx_l4_core__sham, @@ -3975,7 +3976,8 @@ int __init omap3xxx_hwmod_init(void) } else if (rev == OMAP3630_REV_ES1_0 || rev == OMAP3630_REV_ES1_1 || rev == OMAP3630_REV_ES1_2) { h = omap36xx_hwmod_ocp_ifs; - h_gp = omap36xx_gp_hwmod_ocp_ifs; + /* OLIO: We don't want these clocks running */ + /* h_gp = omap36xx_gp_hwmod_ocp_ifs; */ } else { WARN(1, "OMAP3 hwmod family init: unknown chip type\n"); return -EINVAL; |