The patch titled rtc: DS1374 wakeup support (update) has been added to the -mm tree. Its filename is rtc-ds1374-wakeup-support-update.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: rtc: DS1374 wakeup support (update) From: Marc Pignat <marc.pignat@xxxxxxx> Changes since v1: * patch against 2.6.27-rc1 * removed device_init_wakeup(...) calls, they should be handled in i2c-core.c Signed-off-by: Marc Pignat <marc.pignat@xxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-ds1374.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff -puN drivers/rtc/rtc-ds1374.c~rtc-ds1374-wakeup-support-update drivers/rtc/rtc-ds1374.c --- a/drivers/rtc/rtc-ds1374.c~rtc-ds1374-wakeup-support-update +++ a/drivers/rtc/rtc-ds1374.c @@ -388,7 +388,6 @@ static int ds1374_probe(struct i2c_clien dev_err(&client->dev, "unable to request IRQ\n"); goto out_free; } - device_init_wakeup(&client->dev, 1); } ds1374->rtc = rtc_device_register(client->name, &client->dev, @@ -402,10 +401,8 @@ static int ds1374_probe(struct i2c_clien return 0; out_irq: - if (client->irq >= 0) { - device_init_wakeup(&client->dev, 0); + if (client->irq >= 0) free_irq(client->irq, client); - } out_free: i2c_set_clientdata(client, NULL); @@ -422,7 +419,6 @@ static int __devexit ds1374_remove(struc ds1374->exiting = 1; mutex_unlock(&ds1374->mutex); - device_init_wakeup(&client->dev, 0); free_irq(client->irq, client); flush_scheduled_work(); } _ Patches currently in -mm which might be from marc.pignat@xxxxxxx are hwmon-adc124s501-generic-driver.patch hwmon-adc124s501-generic-driver-update.patch rtc-ds1374-wakup-support.patch rtc-ds1374-wakeup-support-update.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html