aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2015-03-13 14:09:39 -0400
committerKumar Gala <galak@codeaurora.org>2015-03-27 12:31:02 -0400
commit27842bb18b004a2802f4b3221c79ce638c4bf6ee (patch)
treef68245efb63179f9fd1b719bf08a4c111082a861 /include/linux/platform_data
parent8c7b69ae430c449414b34230946ef707ea95dcc6 (diff)
mmc: Remove msm_sdcc driver
This driver is orphaned now that mach-msm has been removed. Delete it. Cc: Chris Ball <chris@printf.net> Cc: David Brown <davidb@codeaurora.org> Cc: Bryan Huntsman <bryanh@codeaurora.org> Cc: Daniel Walker <dwalker@fifo99.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Kumar Gala <galak@codeaurora.org>
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r--include/linux/platform_data/mmc-msm_sdcc.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/linux/platform_data/mmc-msm_sdcc.h b/include/linux/platform_data/mmc-msm_sdcc.h
deleted file mode 100644
index 55aa873c9396..000000000000
--- a/include/linux/platform_data/mmc-msm_sdcc.h
+++ /dev/null
@@ -1,27 +0,0 @@
1#ifndef __MMC_MSM_SDCC_H
2#define __MMC_MSM_SDCC_H
3
4#include <linux/mmc/host.h>
5#include <linux/mmc/card.h>
6#include <linux/mmc/sdio_func.h>
7
8struct msm_mmc_gpio {
9 unsigned no;
10 const char *name;
11};
12
13struct msm_mmc_gpio_data {
14 struct msm_mmc_gpio *gpio;
15 u8 size;
16};
17
18struct msm_mmc_platform_data {
19 unsigned int ocr_mask; /* available voltages */
20 u32 (*translate_vdd)(struct device *, unsigned int);
21 unsigned int (*status)(struct device *);
22 int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id);
23 struct msm_mmc_gpio_data *gpio_data;
24 void (*init_card)(struct mmc_card *card);
25};
26
27#endif