Commit 576e7adf822f4cfe6873572a2507108498f1d9ca

Authored by Jingoo Han
Committed by David Woodhouse
1 parent f40152f7b8

mtd: maps: pxa2xx-flash: 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 2 deletions Side-by-side Diff

drivers/mtd/maps/pxa2xx-flash.c
... ... @@ -107,8 +107,6 @@
107 107 {
108 108 struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
109 109  
110   - platform_set_drvdata(dev, NULL);
111   -
112 110 mtd_device_unregister(info->mtd);
113 111  
114 112 map_destroy(info->mtd);