You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
315 B
16 lines
315 B
20 years ago
|
/*
|
||
|
* linux/include/asm-arm/mach/mmc.h
|
||
|
*/
|
||
|
#ifndef ASMARM_MACH_MMC_H
|
||
|
#define ASMARM_MACH_MMC_H
|
||
|
|
||
|
#include <linux/mmc/protocol.h>
|
||
|
|
||
|
struct mmc_platform_data {
|
||
|
unsigned int ocr_mask; /* available voltages */
|
||
|
u32 (*translate_vdd)(struct device *, unsigned int);
|
||
|
unsigned int (*status)(struct device *);
|
||
|
};
|
||
|
|
||
|
#endif
|