rtc-rv3028.c (9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e) rtc-rv3028.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * RTC driver for the Micro Crystal RV3028
4 *
5 * Copyright (C) 2019 Micro Crystal SA
6 *
7 * Alexandre Belloni <alexandre.belloni@bootlin.com>
8 *

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

995MODULE_DEVICE_TABLE(of, rv3028_of_match);
996
997static struct i2c_driver rv3028_driver = {
998 .driver = {
999 .name = "rtc-rv3028",
1000 .acpi_match_table = rv3028_i2c_acpi_match,
1001 .of_match_table = of_match_ptr(rv3028_of_match),
1002 },
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * RTC driver for the Micro Crystal RV3028
4 *
5 * Copyright (C) 2019 Micro Crystal SA
6 *
7 * Alexandre Belloni <alexandre.belloni@bootlin.com>
8 *

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

995MODULE_DEVICE_TABLE(of, rv3028_of_match);
996
997static struct i2c_driver rv3028_driver = {
998 .driver = {
999 .name = "rtc-rv3028",
1000 .acpi_match_table = rv3028_i2c_acpi_match,
1001 .of_match_table = of_match_ptr(rv3028_of_match),
1002 },
1003 .probe_new = rv3028_probe,
1003 .probe = rv3028_probe,
1004};
1005module_i2c_driver(rv3028_driver);
1006
1007MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@bootlin.com>");
1008MODULE_DESCRIPTION("Micro Crystal RV3028 RTC driver");
1009MODULE_LICENSE("GPL v2");
1004};
1005module_i2c_driver(rv3028_driver);
1006
1007MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@bootlin.com>");
1008MODULE_DESCRIPTION("Micro Crystal RV3028 RTC driver");
1009MODULE_LICENSE("GPL v2");