-
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: 100899 b: refs/heads/master c: 1a189b9 h: refs/heads/master i: 100897: 5a67146 100895: 9316dde v: v3
- Loading branch information
Russell King
authored and
Russell King
committed
May 19, 2008
1 parent
1ed2dfd
commit d8ca343
Showing
11 changed files
with
39 additions
and
80 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: bdb08cb2d3491d441dd403dfb88d90ba90fb7232 | ||
refs/heads/master: 1a189b97190d3f0f8cf0379a799d3555b2d648bb |
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
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,31 @@ | ||
#ifndef __LINUX_PWM_H | ||
#define __LINUX_PWM_H | ||
|
||
struct pwm_device; | ||
|
||
/* | ||
* pwm_request - request a PWM device | ||
*/ | ||
struct pwm_device *pwm_request(int pwm_id, const char *label); | ||
|
||
/* | ||
* pwm_free - free a PWM device | ||
*/ | ||
void pwm_free(struct pwm_device *pwm); | ||
|
||
/* | ||
* pwm_config - change a PWM device configuration | ||
*/ | ||
int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns); | ||
|
||
/* | ||
* pwm_enable - start a PWM output toggling | ||
*/ | ||
int pwm_enable(struct pwm_device *pwm); | ||
|
||
/* | ||
* pwm_disable - stop a PWM output toggling | ||
*/ | ||
void pwm_disable(struct pwm_device *pwm); | ||
|
||
#endif /* __ASM_ARCH_PWM_H */ |
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