aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap2/voltagedomains44xx_data.c
diff options
context:
space:
mode:
authorBenoit Cousson <b-cousson@ti.com>2011-03-21 12:11:54 +0100
committerKevin Hilman <khilman@ti.com>2011-09-15 11:39:10 -0700
commit7e1b94059cea39218071fdb78c4075b83d52e222 (patch)
tree3de515f7fffe4369a16d7e5ed19010a2da510797 /arch/arm/mach-omap2/voltagedomains44xx_data.c
parentda03ce65b5431245b9cd20db3edaaa6b9f5c8dc1 (diff)
OMAP4: powerdomain data: add voltage domains
Add voltage domain name to indicate which voltagedomain each powerdomain is in. The fixed voltage domain like ldo_wakeup for emu and wkup power domain is added too. Signed-off-by: Benoit Cousson <b-cousson@ti.com> Cc: Paul Walmsley <paul@pwsan.com> [khilman@ti.com]: renamed wakeup domain: s/ldo_wakeup/wakeup/ Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/voltagedomains44xx_data.c')
-rw-r--r--arch/arm/mach-omap2/voltagedomains44xx_data.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/voltagedomains44xx_data.c b/arch/arm/mach-omap2/voltagedomains44xx_data.c
index 95e1ce5822ca..9a17b5ebf665 100644
--- a/arch/arm/mach-omap2/voltagedomains44xx_data.c
+++ b/arch/arm/mach-omap2/voltagedomains44xx_data.c
@@ -86,10 +86,15 @@ static struct voltagedomain omap4_voltdm_core = {
.vdd = &omap4_vdd_core_info,
};
+static struct voltagedomain omap4_voltdm_wkup = {
+ .name = "wakeup",
+};
+
static struct voltagedomain *voltagedomains_omap4[] __initdata = {
&omap4_voltdm_mpu,
&omap4_voltdm_iva,
&omap4_voltdm_core,
+ &omap4_voltdm_wkup,
NULL,
};