1 From 19f84eb2a68b3a6cf7aa950adf65b9c0cdbad29d Mon Sep 17 00:00:00 2001
2 From: Lukas Wunner <lukas@wunner.de>
3 Date: Sat, 19 Jan 2019 08:42:40 +0100
4 Subject: [PATCH 386/782] bcm2835-mmc: Deduplicate reset of driver data on
7 The BCM2835 MMC host driver sets the device's driver data pointer to
8 NULL on ->remove() even though the driver core subsequently does the
9 same in __device_release_driver(). Drop the duplicate assignment.
11 Signed-off-by: Lukas Wunner <lukas@wunner.de>
12 Cc: Frank Pavlic <f.pavlic@kunbus.de>
14 drivers/mmc/host/bcm2835-mmc.c | 1 -
15 1 file changed, 1 deletion(-)
17 --- a/drivers/mmc/host/bcm2835-mmc.c
18 +++ b/drivers/mmc/host/bcm2835-mmc.c
19 @@ -1561,7 +1561,6 @@ static int bcm2835_mmc_remove(struct pla
20 dma_release_channel(host->dma_chan_rxtx);
22 mmc_free_host(host->mmc);
23 - platform_set_drvdata(pdev, NULL);