-
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: 8774 b: refs/heads/master c: 50a5de4 h: refs/heads/master v: v3
- Loading branch information
Richard Purdie
authored and
Linus Torvalds
committed
Sep 13, 2005
1 parent
125eec4
commit 8de4603
Showing
6 changed files
with
80 additions
and
40 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: 610827dee82731c7be5a135d750d194ac56881a9 | ||
refs/heads/master: 50a5de44821352354a3ee804e2c7cbfee5a81c06 |
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,15 @@ | ||
/* | ||
* SharpSL SSP Driver | ||
*/ | ||
|
||
struct corgissp_machinfo { | ||
int port; | ||
int cs_lcdcon; | ||
int cs_ads7846; | ||
int cs_max1111; | ||
int clk_lcdcon; | ||
int clk_ads7846; | ||
int clk_max1111; | ||
}; | ||
|
||
void corgi_ssp_set_machinfo(struct corgissp_machinfo *machinfo); |
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,12 @@ | ||
/* | ||
* SharpSL SSP Driver | ||
*/ | ||
|
||
unsigned long corgi_ssp_ads7846_putget(unsigned long); | ||
unsigned long corgi_ssp_ads7846_get(void); | ||
void corgi_ssp_ads7846_put(unsigned long data); | ||
void corgi_ssp_ads7846_lock(void); | ||
void corgi_ssp_ads7846_unlock(void); | ||
void corgi_ssp_lcdtg_send (unsigned char adrs, unsigned char data); | ||
void corgi_ssp_blduty_set(int duty); | ||
int corgi_ssp_max1111_get(unsigned long data); |