rtc-isl12022.c (303b1e894470421f7c5b6452937fc8c1f0f89075) rtc-isl12022.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * An I2C driver for the Intersil ISL 12022
4 *
5 * Author: Roman Fietze <roman.fietze@telemotive.de>
6 *
7 * Based on the Philips PCF8563 RTC
8 * by Alessandro Zummo <a.zummo@towertech.it>.

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

257};
258MODULE_DEVICE_TABLE(i2c, isl12022_id);
259
260static struct i2c_driver isl12022_driver = {
261 .driver = {
262 .name = "rtc-isl12022",
263 .of_match_table = isl12022_dt_match,
264 },
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * An I2C driver for the Intersil ISL 12022
4 *
5 * Author: Roman Fietze <roman.fietze@telemotive.de>
6 *
7 * Based on the Philips PCF8563 RTC
8 * by Alessandro Zummo <a.zummo@towertech.it>.

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

257};
258MODULE_DEVICE_TABLE(i2c, isl12022_id);
259
260static struct i2c_driver isl12022_driver = {
261 .driver = {
262 .name = "rtc-isl12022",
263 .of_match_table = isl12022_dt_match,
264 },
265 .probe_new = isl12022_probe,
265 .probe = isl12022_probe,
266 .id_table = isl12022_id,
267};
268
269module_i2c_driver(isl12022_driver);
270
271MODULE_AUTHOR("roman.fietze@telemotive.de");
272MODULE_DESCRIPTION("ISL 12022 RTC driver");
273MODULE_LICENSE("GPL");
266 .id_table = isl12022_id,
267};
268
269module_i2c_driver(isl12022_driver);
270
271MODULE_AUTHOR("roman.fietze@telemotive.de");
272MODULE_DESCRIPTION("ISL 12022 RTC driver");
273MODULE_LICENSE("GPL");