You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
437 B
21 lines
437 B
--- a/drivers/rtc/rtc-ds1672.c
|
|
+++ b/drivers/rtc/rtc-ds1672.c
|
|
@@ -209,12 +209,18 @@ static int ds1672_probe(struct i2c_clien
|
|
return err;
|
|
}
|
|
|
|
+static struct i2c_device_id ds1672_id[] = {
|
|
+ { "ds1672", 0 },
|
|
+ { }
|
|
+};
|
|
+
|
|
static struct i2c_driver ds1672_driver = {
|
|
.driver = {
|
|
.name = "rtc-ds1672",
|
|
},
|
|
.probe = &ds1672_probe,
|
|
.remove = &ds1672_remove,
|
|
+ .id_table = ds1672_id,
|
|
};
|
|
|
|
static int __init ds1672_init(void)
|
|
|