-
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: 175382 b: refs/heads/master c: 3989d17 h: refs/heads/master v: v3
- Loading branch information
Pavel Machek
authored and
Daniel Walker
committed
Dec 10, 2009
1 parent
19b3bb3
commit d1919ad
Showing
3 changed files
with
28 additions
and
5 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: 4e00dc762d68248c23c5fe1dfb4d06fbe75554b0 | ||
refs/heads/master: 3989d17847071fa94c93299805a9cca27cf65d26 |
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,26 @@ | ||
/* | ||
* arch/arm/include/asm/mach/mmc.h | ||
*/ | ||
#ifndef ASMARM_MACH_MMC_H | ||
#define ASMARM_MACH_MMC_H | ||
|
||
#include <linux/mmc/host.h> | ||
#include <linux/mmc/card.h> | ||
#include <linux/mmc/sdio_func.h> | ||
|
||
struct embedded_sdio_data { | ||
struct sdio_cis cis; | ||
struct sdio_cccr cccr; | ||
struct sdio_embedded_func *funcs; | ||
int num_funcs; | ||
}; | ||
|
||
struct mmc_platform_data { | ||
unsigned int ocr_mask; /* available voltages */ | ||
u32 (*translate_vdd)(struct device *, unsigned int); | ||
unsigned int (*status)(struct device *); | ||
struct embedded_sdio_data *embedded_sdio; | ||
int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id); | ||
}; | ||
|
||
#endif |
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