Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-07-16 | drivers/rtc: Replace PTR_RET with PTR_ERR_OR_ZERO | Sachin Kamat | 1 | -1/+1 | |
PTR_RET is now deprecated. Use PTR_ERR_OR_ZERO instead. Signed-off-by: Sachin Kamat <[email protected]> Signed-off-by: Rusty Russell <[email protected]> | |||||
2013-07-03 | drivers/rtc/rtc-isl12022.c: use PTR_RET() | Sachin Kamat | 1 | -4/+2 | |
Use of PTR_RET() simplifies the code. Signed-off-by: Sachin Kamat <[email protected]> Cc: Roman Fietze <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> | |||||
2013-07-03 | drivers/rtc/rtc-isl12022.c: remove empty function | Sachin Kamat | 1 | -6/+0 | |
After the switch to devm_* functions and the removal of rtc_device_unregister(), the 'remove' function does not do anything. Delete it. Signed-off-by: Sachin Kamat <[email protected]> Cc: Roman Fietze <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> | |||||
2013-04-29 | drivers/rtc/rtc-isl12022.c: Remove rtc8564 from isl12022_id | Axel Lin | 1 | -1/+0 | |
rtc8564 appears in i2c_device_id table of both rtc-isl12022.c and rtc-pcf8563.c. Commit 8ea9212cbd65 "rtc-pcf8563: add chip id" added the rtc8564 chip entry to pcf8563. isl12022 driver is modified from pcf8563 driver, so this looks like a copy-paste bug. Signed-off-by: Axel Lin <[email protected]> Cc: Roman Fietze <[email protected]> Cc: Jon Smirl <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> | |||||
2013-04-29 | rtc: rtc-isl12022: use devm_*() functions | Jingoo Han | 1 | -22/+7 | |
Use devm_*() functions to make cleanup paths simpler. Signed-off-by: Jingoo Han <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> | |||||
2013-02-21 | drivers/rtc: remove unnecessary semicolons | Peter Senna Tschudin | 1 | -1/+1 | |
Found by Coccinelle: http://coccinelle.lip6.fr/ Signed-off-by: Peter Senna Tschudin <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> | |||||
2012-03-23 | rtc: convert rtc i2c drivers to module_i2c_driver | Axel Lin | 1 | -12/+1 | |
Factor out some boilerplate code for i2c driver registration into module_i2c_driver. Signed-off-by: Axel Lin <[email protected]> Cc: Piotr Ziecik <[email protected]> Cc: Alessandro Zummo <[email protected]> Cc: Scott Wood <[email protected]> Cc: Srikanth Srinivasan <[email protected]> Cc: Mike Rapoport <[email protected]> Cc: Sergey Lapin <[email protected]> Cc: Roman Fietze <[email protected]> Cc: Herbert Valerio Riedel <[email protected]> Cc: Alexander Bigga <[email protected]> Cc: Dale Farnsworth <[email protected]> Cc: Gregory Hermant <[email protected]> Cc: Wolfgang Grandegger <[email protected]> Cc: Martyn Welch <[email protected]> Cc: Byron Bradley <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> | |||||
2011-10-31 | rtc: Add module.h to implicit users in drivers/rtc | Paul Gortmaker | 1 | -0/+1 | |
The module.h was implicitly everywhere, but when we clean that up, the implicit users will compile fail; fix them up in advance. Signed-off-by: Paul Gortmaker <[email protected]> | |||||
2010-08-11 | rtc-isl12022: properly handle military hour format | Roman Fietze | 1 | -1/+1 | |
Mask out PM flag when reading the hour, always set MIL bit when writing the hour. Signed-off-by: Roman Fietze <[email protected]> Acked-by: Wan ZongShun <[email protected]> Cc: Alessandro Zummo <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> | |||||
2010-08-11 | rtc: add Intersil ISL12022 RTC driver | Roman Fietze | 1 | -0/+327 | |
- derived from rtc-pcf8563 - no SRAM driver Signed-off-by: Roman Fietze <[email protected]> Cc: Wan ZongShun <[email protected]> Cc: Alessandro Zummo <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> |