Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.32 18 lines 350 B view raw
1/* 2 * include/linux/amba/mmci.h 3 */ 4#ifndef AMBA_MMCI_H 5#define AMBA_MMCI_H 6 7#include <linux/mmc/host.h> 8 9struct mmci_platform_data { 10 unsigned int ocr_mask; /* available voltages */ 11 u32 (*translate_vdd)(struct device *, unsigned int); 12 unsigned int (*status)(struct device *); 13 int gpio_wp; 14 int gpio_cd; 15 unsigned long capabilities; 16}; 17 18#endif