aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>2013-02-15 10:13:57 -0500
committerChris Ball <cjb@laptop.org>2013-02-24 14:37:22 -0500
commit76a411f9f9423cbc9f62e70173459c5af54323f4 (patch)
treefb656adeb4d3ab4a1c67f6a6d84e8cf13a5dc88a
parent5a00a971a2b12edf52825fb196b146b5fb6335a3 (diff)
mmc: sh_mobile_sdhi: remove unused .pdata field
The struct sh_mobile_sdhi_info::pdata field was only used for platform- based card detection and isn't used anymore since the migration to GPIO- based MMC slot functions. Remove it. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r--drivers/mmc/host/sh_mobile_sdhi.c4
-rw-r--r--include/linux/mmc/sh_mobile_sdhi.h2
2 files changed, 0 insertions, 6 deletions
diff --git a/drivers/mmc/host/sh_mobile_sdhi.c b/drivers/mmc/host/sh_mobile_sdhi.c
index 06e1bc98c536..175ab970952a 100644
--- a/drivers/mmc/host/sh_mobile_sdhi.c
+++ b/drivers/mmc/host/sh_mobile_sdhi.c
@@ -156,7 +156,6 @@ static int sh_mobile_sdhi_probe(struct platform_device *pdev)
156 mmc_data = &priv->mmc_data; 156 mmc_data = &priv->mmc_data;
157 157
158 if (p) { 158 if (p) {
159 p->pdata = mmc_data;
160 if (p->init) { 159 if (p->init) {
161 ret = p->init(pdev, &sdhi_ops); 160 ret = p->init(pdev, &sdhi_ops);
162 if (ret) 161 if (ret)
@@ -310,9 +309,6 @@ static int sh_mobile_sdhi_remove(struct platform_device *pdev)
310 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data; 309 struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
311 int i = 0, irq; 310 int i = 0, irq;
312 311
313 if (p)
314 p->pdata = NULL;
315
316 tmio_mmc_host_remove(host); 312 tmio_mmc_host_remove(host);
317 313
318 while (1) { 314 while (1) {
diff --git a/include/linux/mmc/sh_mobile_sdhi.h b/include/linux/mmc/sh_mobile_sdhi.h
index b65679ffa880..b76bcf0621f6 100644
--- a/include/linux/mmc/sh_mobile_sdhi.h
+++ b/include/linux/mmc/sh_mobile_sdhi.h
@@ -4,7 +4,6 @@
4#include <linux/types.h> 4#include <linux/types.h>
5 5
6struct platform_device; 6struct platform_device;
7struct tmio_mmc_data;
8 7
9#define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect" 8#define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect"
10#define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard" 9#define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard"
@@ -26,7 +25,6 @@ struct sh_mobile_sdhi_info {
26 unsigned long tmio_caps2; 25 unsigned long tmio_caps2;
27 u32 tmio_ocr_mask; /* available MMC voltages */ 26 u32 tmio_ocr_mask; /* available MMC voltages */
28 unsigned int cd_gpio; 27 unsigned int cd_gpio;
29 struct tmio_mmc_data *pdata;
30 void (*set_pwr)(struct platform_device *pdev, int state); 28 void (*set_pwr)(struct platform_device *pdev, int state);
31 int (*get_cd)(struct platform_device *pdev); 29 int (*get_cd)(struct platform_device *pdev);
32 30