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

rtc: rx6110: Remove useless rx6110_remove

rx6110_remove is empty, remove it.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Link: https://lore.kernel.org/r/20191108002113.14791-1-iwamatsu@nigauri.org
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

authored by

Nobuhiro Iwamatsu and committed by
Alexandre Belloni
5ea0a619 7ad295d5

-6
-6
drivers/rtc/rtc-rx6110.c
··· 370 370 return 0; 371 371 } 372 372 373 - static int rx6110_remove(struct spi_device *spi) 374 - { 375 - return 0; 376 - } 377 - 378 373 static const struct spi_device_id rx6110_id[] = { 379 374 { "rx6110", 0 }, 380 375 { } ··· 388 393 .of_match_table = of_match_ptr(rx6110_spi_of_match), 389 394 }, 390 395 .probe = rx6110_probe, 391 - .remove = rx6110_remove, 392 396 .id_table = rx6110_id, 393 397 }; 394 398