rtc-pcf85063.c (9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e) rtc-pcf85063.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * An I2C driver for the PCF85063 RTC
4 * Copyright 2014 Rose Technology
5 *
6 * Author: Søren Andersen <san@rosetechnology.dk>
7 * Maintainers: http://www.nslu2-linux.org/
8 *

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

676MODULE_DEVICE_TABLE(of, pcf85063_of_match);
677#endif
678
679static struct i2c_driver pcf85063_driver = {
680 .driver = {
681 .name = "rtc-pcf85063",
682 .of_match_table = of_match_ptr(pcf85063_of_match),
683 },
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * An I2C driver for the PCF85063 RTC
4 * Copyright 2014 Rose Technology
5 *
6 * Author: Søren Andersen <san@rosetechnology.dk>
7 * Maintainers: http://www.nslu2-linux.org/
8 *

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

676MODULE_DEVICE_TABLE(of, pcf85063_of_match);
677#endif
678
679static struct i2c_driver pcf85063_driver = {
680 .driver = {
681 .name = "rtc-pcf85063",
682 .of_match_table = of_match_ptr(pcf85063_of_match),
683 },
684 .probe_new = pcf85063_probe,
684 .probe = pcf85063_probe,
685 .id_table = pcf85063_ids,
686};
687
688module_i2c_driver(pcf85063_driver);
689
690MODULE_AUTHOR("Søren Andersen <san@rosetechnology.dk>");
691MODULE_DESCRIPTION("PCF85063 RTC driver");
692MODULE_LICENSE("GPL");
685 .id_table = pcf85063_ids,
686};
687
688module_i2c_driver(pcf85063_driver);
689
690MODULE_AUTHOR("Søren Andersen <san@rosetechnology.dk>");
691MODULE_DESCRIPTION("PCF85063 RTC driver");
692MODULE_LICENSE("GPL");