mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 13:46:39 +07:00
mmc: msm_sdcc: Use platform_set|get_drvdata
The msm_sdcc host shall not use mmc core specific macros to handle its driver data. Instead, convert to use the platform device driver macros. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
6685ac62b2
commit
eaaceb6cbf
@ -1360,7 +1360,7 @@ msmsdcc_probe(struct platform_device *pdev)
|
||||
if (ret)
|
||||
goto cmd_irq_free;
|
||||
|
||||
mmc_set_drvdata(pdev, mmc);
|
||||
platform_set_drvdata(pdev, mmc);
|
||||
mmc_add_host(mmc);
|
||||
|
||||
pr_info("%s: Qualcomm MSM SDCC at 0x%016llx irq %d,%d dma %d\n",
|
||||
@ -1419,7 +1419,7 @@ msmsdcc_probe(struct platform_device *pdev)
|
||||
static int
|
||||
msmsdcc_suspend(struct platform_device *dev, pm_message_t state)
|
||||
{
|
||||
struct mmc_host *mmc = mmc_get_drvdata(dev);
|
||||
struct mmc_host *mmc = platform_get_drvdata(dev);
|
||||
|
||||
if (mmc) {
|
||||
struct msmsdcc_host *host = mmc_priv(mmc);
|
||||
@ -1437,7 +1437,7 @@ msmsdcc_suspend(struct platform_device *dev, pm_message_t state)
|
||||
static int
|
||||
msmsdcc_resume(struct platform_device *dev)
|
||||
{
|
||||
struct mmc_host *mmc = mmc_get_drvdata(dev);
|
||||
struct mmc_host *mmc = platform_get_drvdata(dev);
|
||||
|
||||
if (mmc) {
|
||||
struct msmsdcc_host *host = mmc_priv(mmc);
|
||||
|
Loading…
Reference in New Issue
Block a user