~ubuntu-branches/ubuntu/trusty/linux-linaro-omap/trusty

« back to all changes in this revision

Viewing changes to arch/arm/mach-omap1/pm_bus.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-57i0gl3v99b3lkfg
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
                USE_PLATFORM_PM_SLEEP_OPS
57
57
        },
58
58
};
 
59
#define OMAP1_PWR_DOMAIN (&default_power_domain)
 
60
#else
 
61
#define OMAP1_PWR_DOMAIN NULL
 
62
#endif /* CONFIG_PM_RUNTIME */
59
63
 
60
64
static struct pm_clk_notifier_block platform_bus_notifier = {
61
 
        .pwr_domain = &default_power_domain,
 
65
        .pwr_domain = OMAP1_PWR_DOMAIN,
62
66
        .con_ids = { "ick", "fck", NULL, },
63
67
};
64
68
 
72
76
        return 0;
73
77
}
74
78
core_initcall(omap1_pm_runtime_init);
75
 
#endif /* CONFIG_PM_RUNTIME */
 
79