Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 119807
b: refs/heads/master
c: fe102c7
h: refs/heads/master
i:
  119805: 0acd466
  119803: 9b26c42
  119799: 89dfbd4
  119791: 095b81a
  119775: 8ef89cb
  119743: a13ffbe
  119679: 056b0be
  119551: 1e77bd6
  119295: 94b6e5a
  118783: e9cfd9d
v: v3
  • Loading branch information
Alessandro Zummo authored and Linus Torvalds committed Dec 10, 2008
1 parent 0e1c88b commit 0585e6c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fbb5b7ae4b442f1923513dc6165a66c7a7f29073
refs/heads/master: fe102c71a65a503646bcc94ccb6859da613c2f4f
6 changes: 6 additions & 0 deletions trunk/drivers/rtc/rtc-ds1672.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,18 @@ static int ds1672_probe(struct i2c_client *client,
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)
Expand Down
6 changes: 6 additions & 0 deletions trunk/drivers/rtc/rtc-max6900.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,18 @@ max6900_probe(struct i2c_client *client, const struct i2c_device_id *id)
return 0;
}

static struct i2c_device_id max6900_id[] = {
{ "max6900", 0 },
{ }
};

static struct i2c_driver max6900_driver = {
.driver = {
.name = "rtc-max6900",
},
.probe = max6900_probe,
.remove = max6900_remove,
.id_table = max6900_id,
};

static int __init max6900_init(void)
Expand Down

0 comments on commit 0585e6c

Please sign in to comment.