Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtc: abx80x: remove useless .remove

.remove is empty, remove it.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

-6
-6
drivers/rtc/rtc-abx80x.c
··· 851 851 return rtc_register_device(priv->rtc); 852 852 } 853 853 854 - static int abx80x_remove(struct i2c_client *client) 855 - { 856 - return 0; 857 - } 858 - 859 854 static const struct i2c_device_id abx80x_id[] = { 860 855 { "abx80x", ABX80X }, 861 856 { "ab0801", AB0801 }, ··· 871 876 .name = "rtc-abx80x", 872 877 }, 873 878 .probe = abx80x_probe, 874 - .remove = abx80x_remove, 875 879 .id_table = abx80x_id, 876 880 }; 877 881