Commit 2d7fde1ede6ce0de15371184839455893010d88d

Authored by Jingoo Han
Committed by David Woodhouse
1 parent 576e7adf82

mtd: maps: physmap: remove unnecessary platform_set_drvdata()

The driver core clears the driver data to NULL after device_release
or on probe failure, since commit 0998d0631001288a5974afc0b2a5f568bcdecb4d
(device-core: Ensure drvdata = NULL when no driver is bound).
Thus, it is not needed to manually clear the device driver data to NULL.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>

Showing 1 changed file with 0 additions and 1 deletions Side-by-side Diff

drivers/mtd/maps/physmap.c
... ... @@ -40,7 +40,6 @@
40 40 info = platform_get_drvdata(dev);
41 41 if (info == NULL)
42 42 return 0;
43   - platform_set_drvdata(dev, NULL);
44 43  
45 44 physmap_data = dev->dev.platform_data;
46 45