aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
authorAndreas Fenkart <afenkart@gmail.com>2014-11-08 09:33:10 -0500
committerUlf Hansson <ulf.hansson@linaro.org>2014-11-26 08:30:54 -0500
commita74fecdf795e1d219fcdb6470b6a0709ff7e3e76 (patch)
treee552cd770fceffcf510530598784a613d1aaee8e /include/linux/platform_data
parent551434389074791da30b7afbf44c4bbe9b8b0116 (diff)
mmc: omap_hsmmc: remove unused fields in platform_data
platform data is built from omap2_hsmmc_info, remove all fields that are never set in omap_hsmmc_info, hence never copied to platform data. Note that the omap_hsmmc driver is not affected by this patch those fields were completely unused. Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Andreas Fenkart <afenkart@gmail.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r--include/linux/platform_data/hsmmc-omap.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/linux/platform_data/hsmmc-omap.h b/include/linux/platform_data/hsmmc-omap.h
index 7dd42e54a587..11d7ed99603f 100644
--- a/include/linux/platform_data/hsmmc-omap.h
+++ b/include/linux/platform_data/hsmmc-omap.h
@@ -73,16 +73,9 @@ struct omap_hsmmc_platform_data {
73 * 4/8 wires and any additional host capabilities 73 * 4/8 wires and any additional host capabilities
74 * need to OR'd all capabilities (ref. linux/mmc/host.h) 74 * need to OR'd all capabilities (ref. linux/mmc/host.h)
75 */ 75 */
76 u8 wires; /* Used for the MMC driver on omap1 and 2420 */
77 u32 caps; /* Used for the MMC driver on 2430 and later */ 76 u32 caps; /* Used for the MMC driver on 2430 and later */
78 u32 pm_caps; /* PM capabilities of the mmc */ 77 u32 pm_caps; /* PM capabilities of the mmc */
79 78
80 /*
81 * nomux means "standard" muxing is wrong on this board, and
82 * that board-specific code handled it before common init logic.
83 */
84 unsigned nomux:1;
85
86 /* switch pin can be for card detect (default) or card cover */ 79 /* switch pin can be for card detect (default) or card cover */
87 unsigned cover:1; 80 unsigned cover:1;
88 81
@@ -92,18 +85,9 @@ struct omap_hsmmc_platform_data {
92 /* nonremovable e.g. eMMC */ 85 /* nonremovable e.g. eMMC */
93 unsigned nonremovable:1; 86 unsigned nonremovable:1;
94 87
95 /* Try to sleep or power off when possible */
96 unsigned power_saving:1;
97
98 /* If using power_saving and the MMC power is not to go off */
99 unsigned no_off:1;
100
101 /* eMMC does not handle power off when not in sleep state */ 88 /* eMMC does not handle power off when not in sleep state */
102 unsigned no_regulator_off_init:1; 89 unsigned no_regulator_off_init:1;
103 90
104 /* Regulator off remapped to sleep */
105 unsigned vcc_aux_disable_is_sleep:1;
106
107 /* we can put the features above into this variable */ 91 /* we can put the features above into this variable */
108#define HSMMC_HAS_PBIAS (1 << 0) 92#define HSMMC_HAS_PBIAS (1 << 0)
109#define HSMMC_HAS_UPDATED_RESET (1 << 1) 93#define HSMMC_HAS_UPDATED_RESET (1 << 1)
@@ -142,8 +126,5 @@ struct omap_hsmmc_platform_data {
142 int card_detect_irq; 126 int card_detect_irq;
143 127
144 int (*card_detect)(struct device *dev, int slot); 128 int (*card_detect)(struct device *dev, int slot);
145
146 unsigned int ban_openended:1;
147
148 } slots[OMAP_HSMMC_MAX_SLOTS]; 129 } slots[OMAP_HSMMC_MAX_SLOTS];
149}; 130};