mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
31 lines
1,006 B
Diff
31 lines
1,006 B
Diff
From 24ef1355a52c112c031933856e22092ef4a58f88 Mon Sep 17 00:00:00 2001
|
|
From: Lukas Wunner <lukas@wunner.de>
|
|
Date: Sat, 19 Jan 2019 08:42:40 +0100
|
|
Subject: [PATCH 392/432] bcm2835-mmc: Deduplicate reset of driver data on
|
|
remove
|
|
|
|
The BCM2835 MMC host driver sets the device's driver data pointer to
|
|
NULL on ->remove() even though the driver core subsequently does the
|
|
same in __device_release_driver(). Drop the duplicate assignment.
|
|
|
|
Signed-off-by: Lukas Wunner <lukas@wunner.de>
|
|
Cc: Frank Pavlic <f.pavlic@kunbus.de>
|
|
---
|
|
drivers/mmc/host/bcm2835-mmc.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/drivers/mmc/host/bcm2835-mmc.c b/drivers/mmc/host/bcm2835-mmc.c
|
|
index f14f46a71534..411317eec404 100644
|
|
--- a/drivers/mmc/host/bcm2835-mmc.c
|
|
+++ b/drivers/mmc/host/bcm2835-mmc.c
|
|
@@ -1561,7 +1561,6 @@ static int bcm2835_mmc_remove(struct platform_device *pdev)
|
|
dma_release_channel(host->dma_chan_rxtx);
|
|
|
|
mmc_free_host(host->mmc);
|
|
- platform_set_drvdata(pdev, NULL);
|
|
|
|
return 0;
|
|
}
|
|
--
|
|
2.19.1
|
|
|