rtc-rx8010.c (9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e) | rtc-rx8010.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Driver for the Epson RTC module RX-8010 SJ 4 * 5 * Copyright(C) Timesys Corporation 2015 6 * Copyright(C) General Electric Company 2015 7 */ 8 --- 410 unchanged lines hidden (view full) --- 419 return devm_rtc_register_device(rx8010->rtc); 420} 421 422static struct i2c_driver rx8010_driver = { 423 .driver = { 424 .name = "rtc-rx8010", 425 .of_match_table = of_match_ptr(rx8010_of_match), 426 }, | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Driver for the Epson RTC module RX-8010 SJ 4 * 5 * Copyright(C) Timesys Corporation 2015 6 * Copyright(C) General Electric Company 2015 7 */ 8 --- 410 unchanged lines hidden (view full) --- 419 return devm_rtc_register_device(rx8010->rtc); 420} 421 422static struct i2c_driver rx8010_driver = { 423 .driver = { 424 .name = "rtc-rx8010", 425 .of_match_table = of_match_ptr(rx8010_of_match), 426 }, |
427 .probe_new = rx8010_probe, | 427 .probe = rx8010_probe, |
428 .id_table = rx8010_id, 429}; 430 431module_i2c_driver(rx8010_driver); 432 433MODULE_AUTHOR("Akshay Bhat <akshay.bhat@timesys.com>"); 434MODULE_DESCRIPTION("Epson RX8010SJ RTC driver"); 435MODULE_LICENSE("GPL v2"); | 428 .id_table = rx8010_id, 429}; 430 431module_i2c_driver(rx8010_driver); 432 433MODULE_AUTHOR("Akshay Bhat <akshay.bhat@timesys.com>"); 434MODULE_DESCRIPTION("Epson RX8010SJ RTC driver"); 435MODULE_LICENSE("GPL v2"); |