-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kevin Hilman
committed
Sep 15, 2011
1 parent
2aaffd9
commit cdf78ac
Showing
7 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 8f1bec246c44d936a02cc6b781bfd9ba670d7e45 | ||
refs/heads/master: aae030fa329307895eb935b057a72b12c6bd678b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* OMAP3 voltage domain data | ||
* | ||
* Copyright (C) 2011 Texas Instruments, Inc. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
#include <linux/kernel.h> | ||
#include <linux/init.h> | ||
|
||
#include "voltage.h" | ||
|
||
static struct voltagedomain omap2_voltdm_core = { | ||
.name = "core", | ||
}; | ||
|
||
static struct voltagedomain omap2_voltdm_wkup = { | ||
.name = "wakeup", | ||
}; | ||
|
||
static struct voltagedomain *voltagedomains_omap2[] __initdata = { | ||
&omap2_voltdm_core, | ||
&omap2_voltdm_wkup, | ||
NULL, | ||
}; | ||
|
||
void __init omap2xxx_voltagedomains_init(void) | ||
{ | ||
voltdm_init(voltagedomains_omap2); | ||
} |