rtc: ds1302: remove unnecessary spi_set_drvdata()
authorYang Yingliang <yangyingliang@huawei.com>
Tue, 13 Sep 2022 14:49:05 +0000 (22:49 +0800)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Tue, 15 Nov 2022 20:01:51 +0000 (21:01 +0100)
commit5dc8356830428656c3a00dd702fb9102fe43550f
treede9a2f9c9930b6183aebbf30f85149c60336a91c
parentf27efee663701f0e93351cf052677214fed40a42
rtc: ds1302: remove unnecessary spi_set_drvdata()

Remove unnecessary spi_set_drvdata() in ds1302_remove(), the driver_data
will be set to NULL in device_unbind_cleanup() after calling ->remove().
After this, ds1302_remove() is an empty function, so remove it too.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20220913144905.2004924-1-yangyingliang@huawei.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-ds1302.c