i2c: Remove unneeded xxx_set_drvdata(..., NULL) calls
There is simply no reason to be manually setting the private driver data to NULL in the remove/fail to probe cases. This is just extra cruft code that can be removed. A few notes: * Nothing relies on drvdata being set to NULL. * The __device_release_driver() function eventually calls dev_set_drvdata(dev, NULL) anyway, so there's no need to do it twice. * I verified that there were no cases where xxx_get_drvdata() was being called in these drivers and checking for / relying on the NULL return value. This could be cleaned up kernel-wide but for now just take the baby step and remove from the i2c subsystem. Reported-by: Wolfram Sang <wsa@the-dreams.de> Reported-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Doug Anderson <dianders@chromium.org> Reviewed-by: Jean Delvare <khali@linux-fr.org> Acked-by: Peter Korsgaard <jacmet@sunsite.dk> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Wolfram Sang <wolfram@the-dreams.de>
This commit is contained in:

committed by
Wolfram Sang

parent
0a6d224679
commit
55827f4aa6
@@ -349,7 +349,6 @@ static int pmcmsptwi_probe(struct platform_device *pldev)
|
||||
return 0;
|
||||
|
||||
ret_unmap:
|
||||
platform_set_drvdata(pldev, NULL);
|
||||
if (pmcmsptwi_data.irq) {
|
||||
pmcmsptwi_writel(0,
|
||||
pmcmsptwi_data.iobase + MSP_TWI_INT_MSK_REG_OFFSET);
|
||||
@@ -374,7 +373,6 @@ static int pmcmsptwi_remove(struct platform_device *pldev)
|
||||
|
||||
i2c_del_adapter(&pmcmsptwi_adapter);
|
||||
|
||||
platform_set_drvdata(pldev, NULL);
|
||||
if (pmcmsptwi_data.irq) {
|
||||
pmcmsptwi_writel(0,
|
||||
pmcmsptwi_data.iobase + MSP_TWI_INT_MSK_REG_OFFSET);
|
||||
|
Reference in New Issue
Block a user