Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c07303c0 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds
Browse files

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: default avatarJingoo Han <jg1.han@samsung.com>
Cc: Jean Delvare <khali@linux-fr.org>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e7b18ede
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -924,7 +924,6 @@ static int swim_probe(struct platform_device *dev)
	return 0;

out_kfree:
	platform_set_drvdata(dev, NULL);
	kfree(swd);
out_iounmap:
	iounmap(swim_base);
@@ -962,7 +961,6 @@ static int swim_remove(struct platform_device *dev)
	if (res)
		release_mem_region(res->start, resource_size(res));

	platform_set_drvdata(dev, NULL);
	kfree(swd);

	return 0;