-
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: 90232 b: refs/heads/master c: 3e94794 h: refs/heads/master v: v3
- Loading branch information
Magnus Damm
authored and
Jeff Garzik
committed
Mar 17, 2008
1 parent
796e315
commit bb20f21
Showing
4 changed files
with
78 additions
and
28 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: cfdfa86536d2fbc8102780ec15faea185e957d3d | ||
refs/heads/master: 3e94794355724f77dc6cbb5ad956f7c72d8313a4 |
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,13 @@ | ||
#ifndef __SMC91X_H__ | ||
#define __SMC91X_H__ | ||
|
||
#define SMC91X_USE_8BIT (1 << 0) | ||
#define SMC91X_USE_16BIT (1 << 1) | ||
#define SMC91X_USE_32BIT (1 << 2) | ||
|
||
struct smc91x_platdata { | ||
unsigned long flags; | ||
unsigned long irq_flags; /* IRQF_... */ | ||
}; | ||
|
||
#endif /* __SMC91X_H__ */ |