rtc-rx6110.c (9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e) | rtc-rx6110.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Driver for the Epson RTC module RX-6110 SA 4 * 5 * Copyright(C) 2015 Pengutronix, Steffen Trumtrar <kernel@pengutronix.de> 6 * Copyright(C) SEIKO EPSON CORPORATION 2013. All rights reserved. 7 */ 8 --- 448 unchanged lines hidden (view full) --- 457}; 458MODULE_DEVICE_TABLE(i2c, rx6110_i2c_id); 459 460static struct i2c_driver rx6110_i2c_driver = { 461 .driver = { 462 .name = RX6110_DRIVER_NAME, 463 .acpi_match_table = rx6110_i2c_acpi_match, 464 }, | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Driver for the Epson RTC module RX-6110 SA 4 * 5 * Copyright(C) 2015 Pengutronix, Steffen Trumtrar <kernel@pengutronix.de> 6 * Copyright(C) SEIKO EPSON CORPORATION 2013. All rights reserved. 7 */ 8 --- 448 unchanged lines hidden (view full) --- 457}; 458MODULE_DEVICE_TABLE(i2c, rx6110_i2c_id); 459 460static struct i2c_driver rx6110_i2c_driver = { 461 .driver = { 462 .name = RX6110_DRIVER_NAME, 463 .acpi_match_table = rx6110_i2c_acpi_match, 464 }, |
465 .probe_new = rx6110_i2c_probe, | 465 .probe = rx6110_i2c_probe, |
466 .id_table = rx6110_i2c_id, 467}; 468 469static int rx6110_i2c_register(void) 470{ 471 return i2c_add_driver(&rx6110_i2c_driver); 472} 473 --- 41 unchanged lines hidden --- | 466 .id_table = rx6110_i2c_id, 467}; 468 469static int rx6110_i2c_register(void) 470{ 471 return i2c_add_driver(&rx6110_i2c_driver); 472} 473 --- 41 unchanged lines hidden --- |