-
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: 65615 b: refs/heads/master c: 55fe77a h: refs/heads/master i: 65613: dda9c13 65611: 020fb2a 65607: 7634a0b 65599: d9e58c9 v: v3
- Loading branch information
Nicolas Pitre
authored and
Pierre Ossman
committed
Sep 23, 2007
1 parent
edd62b5
commit 1ce684a
Showing
2 changed files
with
24 additions
and
1 deletion.
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: bcfe66e21ef78a078bb0de0bab532701996695d3 | ||
refs/heads/master: 55fe77a0a24e05c9aaf1a13550dde5efad8b49f2 |
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 @@ | ||
/* | ||
* SDIO Classes, Interface Types, Manufacturer IDs, etc. | ||
*/ | ||
|
||
#ifndef MMC_SDIO_IDS_H | ||
#define MMC_SDIO_IDS_H | ||
|
||
/* | ||
* Standard SDIO Function Interfaces | ||
*/ | ||
|
||
#define SDIO_CLASS_NONE 0x00 /* Not a SDIO standard interface */ | ||
#define SDIO_CLASS_UART 0x01 /* standard UART interface */ | ||
#define SDIO_CLASS_BT_A 0x02 /* Type-A BlueTooth std interface */ | ||
#define SDIO_CLASS_BT_B 0x03 /* Type-B BlueTooth std interface */ | ||
#define SDIO_CLASS_GPS 0x04 /* GPS standard interface */ | ||
#define SDIO_CLASS_CAMERA 0x05 /* Camera standard interface */ | ||
#define SDIO_CLASS_PHS 0x06 /* PHS standard interface */ | ||
#define SDIO_CLASS_WLAN 0x07 /* WLAN interface */ | ||
#define SDIO_CLASS_ATA 0x08 /* Embedded SDIO-ATA std interface */ | ||
|
||
|
||
#endif |