rtc-ds1672.c (4f2c0a4acffbec01079c28f839422e64ddeff004) | rtc-ds1672.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * An rtc/i2c driver for the Dallas DS1672 4 * Copyright 2005-06 Tower Technologies 5 * 6 * Author: Alessandro Zummo <a.zummo@towertech.it> 7 */ 8 --- 135 unchanged lines hidden (view full) --- 144}; 145MODULE_DEVICE_TABLE(of, ds1672_of_match); 146 147static struct i2c_driver ds1672_driver = { 148 .driver = { 149 .name = "rtc-ds1672", 150 .of_match_table = of_match_ptr(ds1672_of_match), 151 }, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * An rtc/i2c driver for the Dallas DS1672 4 * Copyright 2005-06 Tower Technologies 5 * 6 * Author: Alessandro Zummo <a.zummo@towertech.it> 7 */ 8 --- 135 unchanged lines hidden (view full) --- 144}; 145MODULE_DEVICE_TABLE(of, ds1672_of_match); 146 147static struct i2c_driver ds1672_driver = { 148 .driver = { 149 .name = "rtc-ds1672", 150 .of_match_table = of_match_ptr(ds1672_of_match), 151 }, |
152 .probe_new = ds1672_probe, | 152 .probe = ds1672_probe, |
153 .id_table = ds1672_id, 154}; 155 156module_i2c_driver(ds1672_driver); 157 158MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); 159MODULE_DESCRIPTION("Dallas/Maxim DS1672 timekeeper driver"); 160MODULE_LICENSE("GPL"); | 153 .id_table = ds1672_id, 154}; 155 156module_i2c_driver(ds1672_driver); 157 158MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); 159MODULE_DESCRIPTION("Dallas/Maxim DS1672 timekeeper driver"); 160MODULE_LICENSE("GPL"); |