-
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: 77531 b: refs/heads/master c: a083279 h: refs/heads/master i: 77529: 21d3801 77527: a5d38a4 v: v3
- Loading branch information
Tzachi Perelstein
authored and
Russell King
committed
Jan 26, 2008
1 parent
3f517f0
commit 54ed97e
Showing
5 changed files
with
43 additions
and
25 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: 60ce1c20068ec2c138cdf9e5cbe583cc60883c62 | ||
refs/heads/master: a0832798c05241f15e793805b6024919c07b8292 |
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,23 @@ | ||
/* | ||
* 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 _MV64XXX_I2C_H_ | ||
#define _MV64XXX_I2C_H_ | ||
|
||
#include <linux/types.h> | ||
|
||
#define MV64XXX_I2C_CTLR_NAME "mv64xxx_i2c" | ||
|
||
/* i2c Platform Device, Driver Data */ | ||
struct mv64xxx_i2c_pdata { | ||
u32 freq_m; | ||
u32 freq_n; | ||
u32 timeout; /* In milliseconds */ | ||
u32 retries; | ||
}; | ||
|
||
#endif /*_MV64XXX_I2C_H_*/ |