diff mbox

rtc: fixes missing id_table in rtc-ds1672 and rtc-max6900 drivers

Message ID 20081201170527.10714.66805.stgit@i1501.lan.towertech.it
State Accepted, archived
Headers show

Commit Message

Alessandro Zummo Dec. 1, 2008, 5:05 p.m. UTC
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.

Bug reported by kaloz@openwrt.org .

Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Cc: kaloz@openwrt.org
---

 drivers/rtc/rtc-ds1672.c  |    6 ++++++
 drivers/rtc/rtc-max6900.c |    6 ++++++
 2 files changed, 12 insertions(+), 0 deletions(-)



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
-~----------~----~----~----~------~----~------~--~---

Comments

Imre Kaloz Dec. 1, 2008, 8:23 p.m. UTC | #1
On 2008.12.01. 18:05:27 Alessandro Zummo <a.zummo@towertech.it> wrote:

> 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.
>
> Bug reported by kaloz@openwrt.org .
>
> Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
> Cc: kaloz@openwrt.org

Tested-by: Imre Kaloz <kaloz@openwrt.org>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
-~----------~----~----~----~------~----~------~--~---
diff mbox

Patch

diff --git a/drivers/rtc/rtc-ds1672.c b/drivers/rtc/rtc-ds1672.c
index 341d7a5..4e91419 100644
--- a/drivers/rtc/rtc-ds1672.c
+++ b/drivers/rtc/rtc-ds1672.c
@@ -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)
diff --git a/drivers/rtc/rtc-max6900.c b/drivers/rtc/rtc-max6900.c
index 8078279..a4f6665 100644
--- a/drivers/rtc/rtc-max6900.c
+++ b/drivers/rtc/rtc-max6900.c
@@ -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)