-
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.
CHROMIUM: regulator: max8973: Add DT support for ctrl1/2 fields
Add DT support for multiple existing fields in control1/control2 so that they can be configured directly. BUG=chrome-os-partner:46124 TEST=check out the values of control1 and control2 fields Change-Id: If0da658c7982b095012388d3ad9945fc0c68cb8d Signed-off-by: Rhyland Klein <rklein@nvidia.com> Reviewed-on: https://chromium-review.googlesource.com/306081 Reviewed-by: Andrew Bresticker <abrestic@chromium.org>
- Loading branch information
Rhyland Klein
authored and
chrome-bot
committed
Oct 19, 2015
1 parent
a350036
commit 1635ade
Showing
4 changed files
with
67 additions
and
0 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
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,14 @@ | ||
/* | ||
* This header provides constants for binding max8973. | ||
*/ | ||
|
||
#ifndef _DT_BINDINGS_REGULATOR_MAX8973_H | ||
#define _DT_BINDINGS_REGULATOR_MAX8973_H | ||
|
||
/* Inductor Values */ | ||
#define MAX8973_INDUCTOR_VAL_NONIMAL 0 | ||
#define MAX8973_INDUCTOR_VAL_MINUS_30_PER 1 | ||
#define MAX8973_INDUCTOR_VAL_PLUS_30_PER 2 | ||
#define MAX8973_INDUCTOR_VAL_PLUS_60_PER 3 | ||
|
||
#endif |
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