Skip to content

Commit

Permalink
rtc: fix missing id_table in rtc-ds1672 and rtc-max6900 drivers
Browse files Browse the repository at this point in the history
Add missing id_table to the drivers in subject.  Patch is against the
latest git.  It should go in with 2.6.28 if possible, the drivers won't
work without the id_table bits.

Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Reported-by: Imre Kaloz <kaloz@openwrt.org>
Tested-by: Imre Kaloz <kaloz@openwrt.org>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Alessandro Zummo authored and Linus Torvalds committed Dec 10, 2008
1 parent fbb5b7a commit fe102c7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 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 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 fe102c7

Please sign in to comment.