aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2007-06-11 15:01:00 -0400
committerPierre Ossman <drzeus@drzeus.cx>2007-09-23 14:13:52 -0400
commit0597007f1b22bbb5d4234ca09c045f9bb2711270 (patch)
treeffe8cc7fd237a76e399c755ae4b58a469a03dd50 /include
parent35c66c19088bddb11110c124bad8abd4441a8421 (diff)
sdio: basic parsing of FBR
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmc/sdio_func.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mmc/sdio_func.h b/include/linux/mmc/sdio_func.h
index 3365fef5f713..4164809a8e63 100644
--- a/include/linux/mmc/sdio_func.h
+++ b/include/linux/mmc/sdio_func.h
@@ -21,6 +21,11 @@ struct sdio_func {
21 struct mmc_card *card; /* the card this device belongs to */ 21 struct mmc_card *card; /* the card this device belongs to */
22 struct device dev; /* the device */ 22 struct device dev; /* the device */
23 unsigned int num; /* function number */ 23 unsigned int num; /* function number */
24
25 unsigned char class; /* standard interface class */
26 unsigned short vendor; /* vendor id */
27 unsigned short device; /* device id */
28
24 unsigned int state; /* function state */ 29 unsigned int state; /* function state */
25#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */ 30#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
26}; 31};