aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJingoo Han <[email protected]>2013-05-06 13:04:25 +0900
committerSamuel Ortiz <[email protected]>2013-06-11 19:27:51 +0200
commit7d71cf29416a8c5f11e98d507054a01b9cb71ff5 (patch)
tree0939744aafdbd5f6389bae01aa8df5a983ed21c0
parent8477128fe0c3c455e9dfb1ba7ad7e6d09489d33c (diff)
mfd: intel_msic: 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 <[email protected]> Acked-by: Lee Jones <[email protected]> Acked-by: Mika Westerberg <[email protected]> Signed-off-by: Samuel Ortiz <[email protected]>
-rw-r--r--drivers/mfd/intel_msic.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mfd/intel_msic.c b/drivers/mfd/intel_msic.c
index d8d5137f9717..4f2462f0963e 100644
--- a/drivers/mfd/intel_msic.c
+++ b/drivers/mfd/intel_msic.c
@@ -438,7 +438,6 @@ static int intel_msic_remove(struct platform_device *pdev)
struct intel_msic *msic = platform_get_drvdata(pdev);
intel_msic_remove_devices(msic);
- platform_set_drvdata(pdev, NULL);
return 0;
}