Merge tag 'drivers-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / arch / arm / mach-omap2 / voltagedomains2xxx_data.c
blob7a41349981e5afb1f132ec57ca90a3077e228aaa
1 /*
2 * OMAP3 voltage domain data
4 * Copyright (C) 2011 Texas Instruments, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #include <linux/kernel.h>
11 #include <linux/init.h>
13 #include "voltage.h"
15 static struct voltagedomain omap2_voltdm_core = {
16 .name = "core",
19 static struct voltagedomain omap2_voltdm_wkup = {
20 .name = "wakeup",
23 static struct voltagedomain *voltagedomains_omap2[] __initdata = {
24 &omap2_voltdm_core,
25 &omap2_voltdm_wkup,
26 NULL,
29 void __init omap2xxx_voltagedomains_init(void)
31 voltdm_init(voltagedomains_omap2);