-
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.
yaml --- r: 272759 b: refs/heads/master c: 42b4394 h: refs/heads/master i: 272757: 5a8ea4c 272755: eaa8ad1 272751: dbae8ec v: v3
- Loading branch information
Tero Kristo
authored and
Kevin Hilman
committed
Sep 15, 2011
1 parent
f80ac05
commit a3105a9
Showing
2 changed files
with
21 additions
and
1 deletion.
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: 5876c940c0dee298e38fbf47ce67c9e220b0572c | ||
refs/heads/master: 42b43945e0f115412dd0b7f0c3609a8b6f24f5e5 |
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,20 @@ | ||
/* | ||
* OMAP Voltage Management Routines | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef __ARCH_ARM_OMAP_VOLTAGE_H | ||
#define __ARCH_ARM_OMAP_VOLTAGE_H | ||
|
||
struct voltagedomain; | ||
|
||
struct voltagedomain *voltdm_lookup(const char *name); | ||
int voltdm_scale(struct voltagedomain *voltdm, unsigned long target_volt); | ||
unsigned long voltdm_get_voltage(struct voltagedomain *voltdm); | ||
|
||
#endif |