rtc-x1205.c (4f2c0a4acffbec01079c28f839422e64ddeff004) rtc-x1205.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * An i2c driver for the Xicor/Intersil X1205 RTC
4 * Copyright 2004 Karen Spearel
5 * Copyright 2005 Alessandro Zummo
6 *
7 * please send all reports to:
8 * Karen Spearel <kas111 at gmail dot com>

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

674};
675MODULE_DEVICE_TABLE(of, x1205_dt_ids);
676
677static struct i2c_driver x1205_driver = {
678 .driver = {
679 .name = "rtc-x1205",
680 .of_match_table = x1205_dt_ids,
681 },
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * An i2c driver for the Xicor/Intersil X1205 RTC
4 * Copyright 2004 Karen Spearel
5 * Copyright 2005 Alessandro Zummo
6 *
7 * please send all reports to:
8 * Karen Spearel <kas111 at gmail dot com>

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

674};
675MODULE_DEVICE_TABLE(of, x1205_dt_ids);
676
677static struct i2c_driver x1205_driver = {
678 .driver = {
679 .name = "rtc-x1205",
680 .of_match_table = x1205_dt_ids,
681 },
682 .probe_new = x1205_probe,
682 .probe = x1205_probe,
683 .remove = x1205_remove,
684 .id_table = x1205_id,
685};
686
687module_i2c_driver(x1205_driver);
688
689MODULE_AUTHOR(
690 "Karen Spearel <kas111 at gmail dot com>, "
691 "Alessandro Zummo <a.zummo@towertech.it>");
692MODULE_DESCRIPTION("Xicor/Intersil X1205 RTC driver");
693MODULE_LICENSE("GPL");
683 .remove = x1205_remove,
684 .id_table = x1205_id,
685};
686
687module_i2c_driver(x1205_driver);
688
689MODULE_AUTHOR(
690 "Karen Spearel <kas111 at gmail dot com>, "
691 "Alessandro Zummo <a.zummo@towertech.it>");
692MODULE_DESCRIPTION("Xicor/Intersil X1205 RTC driver");
693MODULE_LICENSE("GPL");