diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-09-11 17:20:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-11 18:56:59 -0400 |
commit | c07303c0af38ffb1e5fd9b5ff37d0798298a7acf (patch) | |
tree | ef6450ff76d4ad4921232beb3be3ed255ae2791e /drivers/block | |
parent | e7b18ede4443c0207b9fd849cf604e67c6f38fc9 (diff) |
drivers/block/swim.c: remove unnecessary platform_set_drvdata()
The driver core clears the driver data to NULL after device_release or
on probe failure. Thus, it is not needed to manually clear the device
driver data to NULL.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Jean Delvare <khali@linux-fr.org>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/swim.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/block/swim.c b/drivers/block/swim.c index 8ed6ccb748cf..b02d53a399f3 100644 --- a/drivers/block/swim.c +++ b/drivers/block/swim.c | |||
@@ -924,7 +924,6 @@ static int swim_probe(struct platform_device *dev) | |||
924 | return 0; | 924 | return 0; |
925 | 925 | ||
926 | out_kfree: | 926 | out_kfree: |
927 | platform_set_drvdata(dev, NULL); | ||
928 | kfree(swd); | 927 | kfree(swd); |
929 | out_iounmap: | 928 | out_iounmap: |
930 | iounmap(swim_base); | 929 | iounmap(swim_base); |
@@ -962,7 +961,6 @@ static int swim_remove(struct platform_device *dev) | |||
962 | if (res) | 961 | if (res) |
963 | release_mem_region(res->start, resource_size(res)); | 962 | release_mem_region(res->start, resource_size(res)); |
964 | 963 | ||
965 | platform_set_drvdata(dev, NULL); | ||
966 | kfree(swd); | 964 | kfree(swd); |
967 | 965 | ||
968 | return 0; | 966 | return 0; |