rtc-m41t94.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | rtc-m41t94.c (22652ba72453d35c8a637d5c0f06b3dc29ff9eb0) |
---|---|
1/* 2 * Driver for ST M41T94 SPI RTC 3 * 4 * Copyright (C) 2008 Kim B. Heino 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 85 unchanged lines hidden (view full) --- 94 tm->tm_year += 100; 95 96 dev_dbg(dev, "%s secs=%d, mins=%d, " 97 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n", 98 "read", tm->tm_sec, tm->tm_min, 99 tm->tm_hour, tm->tm_mday, 100 tm->tm_mon, tm->tm_year, tm->tm_wday); 101 | 1/* 2 * Driver for ST M41T94 SPI RTC 3 * 4 * Copyright (C) 2008 Kim B. Heino 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 85 unchanged lines hidden (view full) --- 94 tm->tm_year += 100; 95 96 dev_dbg(dev, "%s secs=%d, mins=%d, " 97 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n", 98 "read", tm->tm_sec, tm->tm_min, 99 tm->tm_hour, tm->tm_mday, 100 tm->tm_mon, tm->tm_year, tm->tm_wday); 101 |
102 /* initial clock setting can be undefined */ 103 return rtc_valid_tm(tm); | 102 return 0; |
104} 105 106static const struct rtc_class_ops m41t94_rtc_ops = { 107 .read_time = m41t94_read_time, 108 .set_time = m41t94_set_time, 109}; 110 111static struct spi_driver m41t94_driver; --- 38 unchanged lines hidden --- | 103} 104 105static const struct rtc_class_ops m41t94_rtc_ops = { 106 .read_time = m41t94_read_time, 107 .set_time = m41t94_set_time, 108}; 109 110static struct spi_driver m41t94_driver; --- 38 unchanged lines hidden --- |