aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2015-04-03 16:20:42 -0400
committerOlof Johansson <olof@lixom.net>2015-04-03 16:20:42 -0400
commit5602d12a861340e9ed2c17cdefc500fa12b52446 (patch)
tree2d2776ce7d159a3381b54034e51d36eb7007e50e /include/linux/platform_data
parent0a47acfa16a5043f5fad562abb8e3e4b53367a43 (diff)
parent27842bb18b004a2802f4b3221c79ce638c4bf6ee (diff)
Merge tag 'qcom-cleanup-for-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom into next/cleanup
Merge "qcom cleanup changes for 4.1" from Kumar Gala: General cleanups for MSM/QCOM for 4.1 * Removal of mach-msm and associated drivers cleanups that have been ack'd by associated maintainers * tag 'qcom-cleanup-for-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom: mmc: Remove msm_sdcc driver gpio: Remove gpio-msm-v1 driver ARM: Remove mach-msm and associated ARM architecture code + Linux 4.0-rc3 Signed-off-by: Olof Johansson <olof@lixom.net>
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