mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
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>
This commit is contained in:
parent
5a00a971a2
commit
76a411f9f9
@ -156,7 +156,6 @@ static int sh_mobile_sdhi_probe(struct platform_device *pdev)
|
|||||||
mmc_data = &priv->mmc_data;
|
mmc_data = &priv->mmc_data;
|
||||||
|
|
||||||
if (p) {
|
if (p) {
|
||||||
p->pdata = mmc_data;
|
|
||||||
if (p->init) {
|
if (p->init) {
|
||||||
ret = p->init(pdev, &sdhi_ops);
|
ret = p->init(pdev, &sdhi_ops);
|
||||||
if (ret)
|
if (ret)
|
||||||
@ -310,9 +309,6 @@ static int sh_mobile_sdhi_remove(struct platform_device *pdev)
|
|||||||
struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
|
struct sh_mobile_sdhi_info *p = pdev->dev.platform_data;
|
||||||
int i = 0, irq;
|
int i = 0, irq;
|
||||||
|
|
||||||
if (p)
|
|
||||||
p->pdata = NULL;
|
|
||||||
|
|
||||||
tmio_mmc_host_remove(host);
|
tmio_mmc_host_remove(host);
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
struct platform_device;
|
struct platform_device;
|
||||||
struct tmio_mmc_data;
|
|
||||||
|
|
||||||
#define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect"
|
#define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect"
|
||||||
#define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard"
|
#define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard"
|
||||||
@ -26,7 +25,6 @@ struct sh_mobile_sdhi_info {
|
|||||||
unsigned long tmio_caps2;
|
unsigned long tmio_caps2;
|
||||||
u32 tmio_ocr_mask; /* available MMC voltages */
|
u32 tmio_ocr_mask; /* available MMC voltages */
|
||||||
unsigned int cd_gpio;
|
unsigned int cd_gpio;
|
||||||
struct tmio_mmc_data *pdata;
|
|
||||||
void (*set_pwr)(struct platform_device *pdev, int state);
|
void (*set_pwr)(struct platform_device *pdev, int state);
|
||||||
int (*get_cd)(struct platform_device *pdev);
|
int (*get_cd)(struct platform_device *pdev);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user