rtc-abx80x.c (9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e) | rtc-abx80x.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * A driver for the I2C members of the Abracon AB x8xx RTC family, 4 * and compatible: AB 1805 and AB 0805 5 * 6 * Copyright 2014-2015 Macq S.A. 7 * 8 * Author: Philippe De Muyter <phdm@macqel.be> --- 978 unchanged lines hidden (view full) --- 987MODULE_DEVICE_TABLE(of, abx80x_of_match); 988#endif 989 990static struct i2c_driver abx80x_driver = { 991 .driver = { 992 .name = "rtc-abx80x", 993 .of_match_table = of_match_ptr(abx80x_of_match), 994 }, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * A driver for the I2C members of the Abracon AB x8xx RTC family, 4 * and compatible: AB 1805 and AB 0805 5 * 6 * Copyright 2014-2015 Macq S.A. 7 * 8 * Author: Philippe De Muyter <phdm@macqel.be> --- 978 unchanged lines hidden (view full) --- 987MODULE_DEVICE_TABLE(of, abx80x_of_match); 988#endif 989 990static struct i2c_driver abx80x_driver = { 991 .driver = { 992 .name = "rtc-abx80x", 993 .of_match_table = of_match_ptr(abx80x_of_match), 994 }, |
995 .probe_new = abx80x_probe, | 995 .probe = abx80x_probe, |
996 .id_table = abx80x_id, 997}; 998 999module_i2c_driver(abx80x_driver); 1000 1001MODULE_AUTHOR("Philippe De Muyter <phdm@macqel.be>"); 1002MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@bootlin.com>"); 1003MODULE_DESCRIPTION("Abracon ABX80X RTC driver"); 1004MODULE_LICENSE("GPL v2"); | 996 .id_table = abx80x_id, 997}; 998 999module_i2c_driver(abx80x_driver); 1000 1001MODULE_AUTHOR("Philippe De Muyter <phdm@macqel.be>"); 1002MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@bootlin.com>"); 1003MODULE_DESCRIPTION("Abracon ABX80X RTC driver"); 1004MODULE_LICENSE("GPL v2"); |