diff options
author | Seungwon <tgih.jun@samsung.com> | 2010-08-04 16:31:18 +0900 |
---|---|---|
committer | Arve Hjønnevåg <arve@android.com> | 2011-11-16 21:48:36 -0800 |
commit | c3aa81f4581371e89dcca061e218f704f794177c (patch) | |
tree | 12d1e9569a0da99e2b105656589c701b347f2731 /include/linux/mmc | |
parent | db969b5b386cad69720c992008969849a65a1700 (diff) | |
download | kernel_samsung_aries-c3aa81f4581371e89dcca061e218f704f794177c.zip kernel_samsung_aries-c3aa81f4581371e89dcca061e218f704f794177c.tar.gz kernel_samsung_aries-c3aa81f4581371e89dcca061e218f704f794177c.tar.bz2 |
sdhci: add support for S5PV210
Change-Id: I6f4b192af48f0e285076481b0aad984b86a572fe
Diffstat (limited to 'include/linux/mmc')
-rw-r--r-- | include/linux/mmc/host.h | 1 | ||||
-rw-r--r-- | include/linux/mmc/sdhci.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 2cfa8d0..b4f9a85 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -133,6 +133,7 @@ struct mmc_host_ops { int (*get_cd)(struct mmc_host *host); void (*enable_sdio_irq)(struct mmc_host *host, int enable); + void (*adjust_cfg)(struct mmc_host *host, int rw); /* optional callback for HC quirks */ void (*init_card)(struct mmc_host *host, struct mmc_card *card); diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index 6a68c4e..de04d52 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h @@ -145,6 +145,7 @@ struct sdhci_host { struct tasklet_struct finish_tasklet; struct timer_list timer; /* Timer for timeouts */ + struct timer_list busy_check_timer; unsigned int caps; /* Alternative capabilities */ |