-
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: 209419 b: refs/heads/master c: 5950ec8 h: refs/heads/master i: 209417: 63d16ad 209415: 61a02fe v: v3
- Loading branch information
Ira W. Snyder
authored and
Jean Delvare
committed
Aug 14, 2010
1 parent
d5dec68
commit 852a331
Showing
4 changed files
with
212 additions
and
12 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: b9783dcebe952bf73449fe70a19ee4814adc81a0 | ||
refs/heads/master: 5950ec8d3e47a08ec0b678a0e0ba5d1b9b62dd8e |
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,21 @@ | ||
/* | ||
* Platform Data for LTC4245 hardware monitor chip | ||
* | ||
* Copyright (c) 2010 Ira W. Snyder <iws@ovro.caltech.edu> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation; either version 2 of the License, or (at your | ||
* option) any later version. | ||
*/ | ||
|
||
#ifndef LINUX_LTC4245_H | ||
#define LINUX_LTC4245_H | ||
|
||
#include <linux/types.h> | ||
|
||
struct ltc4245_platform_data { | ||
bool use_extra_gpios; | ||
}; | ||
|
||
#endif /* LINUX_LTC4245_H */ |