rtc-rx8581.c (4f2c0a4acffbec01079c28f839422e64ddeff004) rtc-rx8581.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * An I2C driver for the Epson RX8581 RTC
4 *
5 * Author: Martyn Welch <martyn.welch@ge.com>
6 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
7 *
8 * Based on: rtc-pcf8563.c (An I2C driver for the Philips PCF8563 RTC)

--- 311 unchanged lines hidden (view full) ---

320};
321MODULE_DEVICE_TABLE(of, rx8581_of_match);
322
323static struct i2c_driver rx8581_driver = {
324 .driver = {
325 .name = "rtc-rx8581",
326 .of_match_table = of_match_ptr(rx8581_of_match),
327 },
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * An I2C driver for the Epson RX8581 RTC
4 *
5 * Author: Martyn Welch <martyn.welch@ge.com>
6 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
7 *
8 * Based on: rtc-pcf8563.c (An I2C driver for the Philips PCF8563 RTC)

--- 311 unchanged lines hidden (view full) ---

320};
321MODULE_DEVICE_TABLE(of, rx8581_of_match);
322
323static struct i2c_driver rx8581_driver = {
324 .driver = {
325 .name = "rtc-rx8581",
326 .of_match_table = of_match_ptr(rx8581_of_match),
327 },
328 .probe_new = rx8581_probe,
328 .probe = rx8581_probe,
329 .id_table = rx8581_id,
330};
331
332module_i2c_driver(rx8581_driver);
333
334MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>");
335MODULE_DESCRIPTION("Epson RX-8571/RX-8581 RTC driver");
336MODULE_LICENSE("GPL");
329 .id_table = rx8581_id,
330};
331
332module_i2c_driver(rx8581_driver);
333
334MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>");
335MODULE_DESCRIPTION("Epson RX-8571/RX-8581 RTC driver");
336MODULE_LICENSE("GPL");