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

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

drivers/rtc/rtc-ds1305.c: remove unnecessary spi_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>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 75465c49
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -787,7 +787,6 @@ static int ds1305_remove(struct spi_device *spi)
		cancel_work_sync(&ds1305->work);
	}

	spi_set_drvdata(spi, NULL);
	return 0;
}