Searched refs:date (Results 1 - 200 of 630) sorted by relevance

1234

/linux-4.4.14/drivers/rtc/
H A Drtc-rx4581.c105 unsigned char date[7]; rx4581_get_datetime() local
110 * time and date then re-read the "update flag". If the update flag rx4581_get_datetime()
132 /* Now read time and date */ rx4581_get_datetime()
133 date[0] = 0x80; rx4581_get_datetime()
134 err = spi_write_then_read(spi, date, 1, date, 7); rx4581_get_datetime()
136 dev_err(dev, "Unable to read date\n"); rx4581_get_datetime()
150 "low voltage detected, date/time is not reliable.\n"); rx4581_get_datetime()
156 date[0], date[1], date[2], date[3], date[4], date[5], date[6]); rx4581_get_datetime()
158 tm->tm_sec = bcd2bin(date[RX4581_REG_SC] & 0x7F); rx4581_get_datetime()
159 tm->tm_min = bcd2bin(date[RX4581_REG_MN] & 0x7F); rx4581_get_datetime()
160 tm->tm_hour = bcd2bin(date[RX4581_REG_HR] & 0x3F); /* rtc hr 0-23 */ rx4581_get_datetime()
161 tm->tm_wday = ilog2(date[RX4581_REG_DW] & 0x7F); rx4581_get_datetime()
162 tm->tm_mday = bcd2bin(date[RX4581_REG_DM] & 0x3F); rx4581_get_datetime()
163 tm->tm_mon = bcd2bin(date[RX4581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ rx4581_get_datetime()
164 tm->tm_year = bcd2bin(date[RX4581_REG_YR]); rx4581_get_datetime()
177 dev_err(dev, "retrieved date/time is not valid.\n"); rx4581_get_datetime()
226 dev_err(dev, "Unable to write to date registers\n"); rx4581_set_datetime()
H A Drtc-rx8025.c120 dev_warn(dev, "power-on reset detected, date is invalid\n"); rx8025_check_validity()
125 dev_warn(dev, "crystal stopped, date is invalid\n"); rx8025_check_validity()
181 u8 date[7]; rx8025_get_time() local
188 err = rx8025_read_regs(rx8025->client, RX8025_REG_SEC, 7, date); rx8025_get_time()
194 date[0], date[1], date[2], date[3], date[4], rx8025_get_time()
195 date[5], date[6]); rx8025_get_time()
197 dt->tm_sec = bcd2bin(date[RX8025_REG_SEC] & 0x7f); rx8025_get_time()
198 dt->tm_min = bcd2bin(date[RX8025_REG_MIN] & 0x7f); rx8025_get_time()
200 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f); rx8025_get_time()
202 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12 rx8025_get_time()
203 + (date[RX8025_REG_HOUR] & 0x20 ? 12 : 0); rx8025_get_time()
205 dt->tm_mday = bcd2bin(date[RX8025_REG_MDAY] & 0x3f); rx8025_get_time()
206 dt->tm_mon = bcd2bin(date[RX8025_REG_MONTH] & 0x1f) - 1; rx8025_get_time()
207 dt->tm_year = bcd2bin(date[RX8025_REG_YEAR]) + 100; rx8025_get_time()
209 dev_dbg(dev, "%s: date %ds %dm %dh %dmd %dm %dy\n", __func__, rx8025_get_time()
219 u8 date[7]; rx8025_set_time() local
229 date[RX8025_REG_SEC] = bin2bcd(dt->tm_sec); rx8025_set_time()
230 date[RX8025_REG_MIN] = bin2bcd(dt->tm_min); rx8025_set_time()
232 date[RX8025_REG_HOUR] = bin2bcd(dt->tm_hour); rx8025_set_time()
234 date[RX8025_REG_HOUR] = (dt->tm_hour >= 12 ? 0x20 : 0) rx8025_set_time()
237 date[RX8025_REG_WDAY] = bin2bcd(dt->tm_wday); rx8025_set_time()
238 date[RX8025_REG_MDAY] = bin2bcd(dt->tm_mday); rx8025_set_time()
239 date[RX8025_REG_MONTH] = bin2bcd(dt->tm_mon + 1); rx8025_set_time()
240 date[RX8025_REG_YEAR] = bin2bcd(dt->tm_year - 100); rx8025_set_time()
245 date[0], date[1], date[2], date[3], date[4], date[5], date[6]); rx8025_set_time()
247 ret = rx8025_write_regs(rx8025->client, RX8025_REG_SEC, 7, date); rx8025_set_time()
323 dev_dbg(dev, "%s: date: %ds %dm %dh %dmd %dm %dy\n", rx8025_read_alarm()
H A Drtc-rx8581.c100 unsigned char date[7]; rx8581_get_datetime() local
105 * time and date then re-read the "update flag". If the update flag rx8581_get_datetime()
126 /* Now read time and date */ rx8581_get_datetime()
128 7, date); rx8581_get_datetime()
130 dev_err(&client->dev, "Unable to read date\n"); rx8581_get_datetime()
144 "low voltage detected, date/time is not reliable.\n"); rx8581_get_datetime()
150 date[0], date[1], date[2], date[3], date[4], date[5], date[6]); rx8581_get_datetime()
152 tm->tm_sec = bcd2bin(date[RX8581_REG_SC] & 0x7F); rx8581_get_datetime()
153 tm->tm_min = bcd2bin(date[RX8581_REG_MN] & 0x7F); rx8581_get_datetime()
154 tm->tm_hour = bcd2bin(date[RX8581_REG_HR] & 0x3F); /* rtc hr 0-23 */ rx8581_get_datetime()
155 tm->tm_wday = ilog2(date[RX8581_REG_DW] & 0x7F); rx8581_get_datetime()
156 tm->tm_mday = bcd2bin(date[RX8581_REG_DM] & 0x3F); rx8581_get_datetime()
157 tm->tm_mon = bcd2bin(date[RX8581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ rx8581_get_datetime()
158 tm->tm_year = bcd2bin(date[RX8581_REG_YR]); rx8581_get_datetime()
171 dev_err(&client->dev, "retrieved date/time is not valid.\n"); rx8581_get_datetime()
219 dev_err(&client->dev, "Unable to write to date registers\n"); rx8581_set_datetime()
H A Drtc-rv8803.c115 u8 *date = date1; rv8803_get_time() local
128 7, date); rv8803_get_time()
139 date = date2; rv8803_get_time()
142 tm->tm_sec = bcd2bin(date[RV8803_SEC] & 0x7f); rv8803_get_time()
143 tm->tm_min = bcd2bin(date[RV8803_MIN] & 0x7f); rv8803_get_time()
144 tm->tm_hour = bcd2bin(date[RV8803_HOUR] & 0x3f); rv8803_get_time()
145 tm->tm_wday = ffs(date[RV8803_WEEK] & 0x7f); rv8803_get_time()
146 tm->tm_mday = bcd2bin(date[RV8803_DAY] & 0x3f); rv8803_get_time()
147 tm->tm_mon = bcd2bin(date[RV8803_MONTH] & 0x1f) - 1; rv8803_get_time()
148 tm->tm_year = bcd2bin(date[RV8803_YEAR]) + 100; rv8803_get_time()
156 u8 date[7]; rv8803_set_time() local
163 date[RV8803_SEC] = bin2bcd(tm->tm_sec); rv8803_set_time()
164 date[RV8803_MIN] = bin2bcd(tm->tm_min); rv8803_set_time()
165 date[RV8803_HOUR] = bin2bcd(tm->tm_hour); rv8803_set_time()
166 date[RV8803_WEEK] = 1 << (tm->tm_wday); rv8803_set_time()
167 date[RV8803_DAY] = bin2bcd(tm->tm_mday); rv8803_set_time()
168 date[RV8803_MONTH] = bin2bcd(tm->tm_mon + 1); rv8803_set_time()
169 date[RV8803_YEAR] = bin2bcd(tm->tm_year - 100); rv8803_set_time()
172 7, date); rv8803_set_time()
H A Drtc-spear.c66 /* date reg equal to time reg, for debug only */
201 * @tm: holds date and time
203 * This function read time and date. On success it will return 0
209 unsigned int time, date; spear_rtc_read_time() local
215 date = readl(config->ioaddr + DATE_REG); spear_rtc_read_time()
219 tm->tm_mday = (date >> MDAY_SHIFT) & DAY_MASK; spear_rtc_read_time()
220 tm->tm_mon = (date >> MONTH_SHIFT) & MONTH_MASK; spear_rtc_read_time()
221 tm->tm_year = (date >> YEAR_SHIFT) & YEAR_MASK; spear_rtc_read_time()
230 * @tm: holds date and time
232 * This function set time and date. On success it will return 0
238 unsigned int time, date; spear_rtc_set_time() local
246 date = (tm->tm_mday << MDAY_SHIFT) | (tm->tm_mon << MONTH_SHIFT) | spear_rtc_set_time()
249 writel(date, config->ioaddr + DATE_REG); spear_rtc_set_time()
257 * @alm: holds alarm date and time
259 * This function read alarm time and date. On success it will return 0
265 unsigned int time, date; spear_rtc_read_alarm() local
270 date = readl(config->ioaddr + ALARM_DATE_REG); spear_rtc_read_alarm()
274 alm->time.tm_mday = (date >> MDAY_SHIFT) & DAY_MASK; spear_rtc_read_alarm()
275 alm->time.tm_mon = (date >> MONTH_SHIFT) & MONTH_MASK; spear_rtc_read_alarm()
276 alm->time.tm_year = (date >> YEAR_SHIFT) & YEAR_MASK; spear_rtc_read_alarm()
287 * @alm: holds alarm date and time
289 * This function set alarm time and date. On success it will return 0
295 unsigned int time, date; spear_rtc_set_alarm() local
305 date = (alm->time.tm_mday << MDAY_SHIFT) | (alm->time.tm_mon << spear_rtc_set_alarm()
309 writel(date, config->ioaddr + ALARM_DATE_REG); spear_rtc_set_alarm()
H A Drtc-sunxi.c68 * Get date values
89 * Set date values
204 u32 date; sunxi_rtc_getalarm() local
207 date = readl(chip->base + SUNXI_RTC_YMD); sunxi_rtc_getalarm()
213 alrm_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); sunxi_rtc_getalarm()
214 alrm_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); sunxi_rtc_getalarm()
215 alrm_tm->tm_year = SUNXI_DATE_GET_YEAR_VALUE(date, sunxi_rtc_getalarm()
236 u32 date, time; sunxi_rtc_gettime() local
242 date = readl(chip->base + SUNXI_RTC_YMD); sunxi_rtc_gettime()
244 } while ((date != readl(chip->base + SUNXI_RTC_YMD)) || sunxi_rtc_gettime()
251 rtc_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); sunxi_rtc_gettime()
252 rtc_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); sunxi_rtc_gettime()
253 rtc_tm->tm_year = SUNXI_DATE_GET_YEAR_VALUE(date, sunxi_rtc_gettime()
344 u32 date = 0; sunxi_rtc_settime() local
364 date = SUNXI_DATE_SET_DAY_VALUE(rtc_tm->tm_mday) | sunxi_rtc_settime()
370 date |= SUNXI_LEAP_SET_VALUE(1, chip->data_year->leap_shift); sunxi_rtc_settime()
393 writel(date, chip->base + SUNXI_RTC_YMD); sunxi_rtc_settime()
H A Drtc-sun6i.c70 * Get date values
85 * Set date values
161 u32 date, time; sun6i_rtc_gettime() local
167 date = readl(chip->base + SUN6I_RTC_YMD); sun6i_rtc_gettime()
169 } while ((date != readl(chip->base + SUN6I_RTC_YMD)) || sun6i_rtc_gettime()
176 rtc_tm->tm_mday = SUN6I_DATE_GET_DAY_VALUE(date); sun6i_rtc_gettime()
177 rtc_tm->tm_mon = SUN6I_DATE_GET_MON_VALUE(date); sun6i_rtc_gettime()
178 rtc_tm->tm_year = SUN6I_DATE_GET_YEAR_VALUE(date); sun6i_rtc_gettime()
269 u32 date = 0; sun6i_rtc_settime() local
283 date = SUN6I_DATE_SET_DAY_VALUE(rtc_tm->tm_mday) | sun6i_rtc_settime()
288 date |= SUN6I_LEAP_SET_VALUE(1); sun6i_rtc_settime()
315 writel(date, chip->base + SUN6I_RTC_YMD); sun6i_rtc_settime()
H A Drtc-em3027.c58 {/* read time/date */ em3027_get_time()
66 /* read time/date registers */ em3027_get_time()
91 .buf = buf, /* write time/date */ em3027_set_time()
103 /* write time/date registers */ em3027_set_time()
H A Drtc-lib.c2 * rtc and date/time utility functions
51 * Convert seconds since 01-01-1970 00:00:00 to Gregorian date.
98 * Does the rtc_time represent a valid date/time?
117 * Convert Gregorian date to seconds since 01-01-1970 00:00:00.
H A Drtc-at91rm9200.c114 * Decode time/date into rtc_time structure
119 unsigned int time, date; at91_rtc_decodetime() local
124 date = at91_rtc_read(calreg); at91_rtc_decodetime()
126 (date != at91_rtc_read(calreg))); at91_rtc_decodetime()
137 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */ at91_rtc_decodetime()
138 tm->tm_year += bcd2bin((date & AT91_RTC_YEAR) >> 8); /* year */ at91_rtc_decodetime()
140 tm->tm_wday = bcd2bin((date & AT91_RTC_DAY) >> 21) - 1; /* day of the week [0-6], Sunday=0 */ at91_rtc_decodetime()
141 tm->tm_mon = bcd2bin((date & AT91_RTC_MONTH) >> 16) - 1; at91_rtc_decodetime()
142 tm->tm_mday = bcd2bin((date & AT91_RTC_DATE) >> 24); at91_rtc_decodetime()
146 * Read current time and date in RTC
162 * Set current time and date in RTC
204 * Read alarm time and date in RTC
225 * Set alarm time and date in RTC
H A Drtc-vt8500.c112 u32 date, time; vt8500_rtc_read_time() local
114 date = readl(vt8500_rtc->regbase + VT8500_RTC_DR); vt8500_rtc_read_time()
120 tm->tm_mday = bcd2bin(date & DATE_DAY_MASK); vt8500_rtc_read_time()
121 tm->tm_mon = bcd2bin((date & DATE_MONTH_MASK) >> DATE_MONTH_S) - 1; vt8500_rtc_read_time()
122 tm->tm_year = bcd2bin((date & DATE_YEAR_MASK) >> DATE_YEAR_S) vt8500_rtc_read_time()
123 + ((date >> DATE_CENTURY_S) & 1 ? 200 : 100); vt8500_rtc_read_time()
H A Drtc-rk808.c66 * implement this exact same conversion algorithm, with the same anchor date.
95 /* Read current time and date in RTC */ rk808_rtc_readtime()
141 dev_dbg(dev, "RTC date/time %4d-%02d-%02d(%d) %02d:%02d:%02d\n", rk808_rtc_readtime()
148 /* Set current time and date in RTC */ rk808_rtc_set_time()
156 dev_dbg(dev, "set RTC date/time %4d-%02d-%02d(%d) %02d:%02d:%02d\n", rk808_rtc_set_time()
193 /* Read alarm time and date in RTC */ rk808_rtc_readalarm()
219 dev_dbg(dev, "alrm read RTC date/time %4d-%02d-%02d(%d) %02d:%02d:%02d\n", rk808_rtc_readalarm()
264 dev_dbg(dev, "alrm set RTC date/time %4d-%02d-%02d(%d) %02d:%02d:%02d\n", rk808_rtc_setalarm()
415 dev_warn(&pdev->dev, "invalid date/time\n"); rk808_rtc_probe()
H A Drtc-m48t35.c34 u8 date; member in struct:m48t35_rtc
67 tm->tm_mday = readb(&priv->reg->date); m48t35_read_time()
131 writeb(day, &priv->reg->date); m48t35_set_time()
H A Drtc-mv.c129 dev_err(dev, "retrieved alarm date/time is not valid.\n"); mv_rtc_read_alarm()
263 * A date after January 19th, 2038 does not fit on 32 bits and mv_rtc_probe()
264 * will confuse the kernel and userspace. Reset to a sane date mv_rtc_probe()
269 dev_info(&pdev->dev, "invalid RTC date, resetting to January 1st, 2013\n"); mv_rtc_probe()
H A Drtc-ds1672.c45 {/* read date */ ds1672_get_datetime()
53 /* read date registers */ ds1672_get_datetime()
H A Drtc-m41t93.c62 dev_warn(&spi->dev, "unsupported date (before 2000-01-01).\n"); m41t93_set_time()
141 /* read actual time/date */ m41t93_get_time()
H A Drtc-r9701.c138 * contain invalid values. If so, try to write a default date: r9701_probe()
142 dev_info(&spi->dev, "trying to repair invalid date/time\n"); r9701_probe()
H A Drtc-abx80x.c104 dev_err(&client->dev, "Unable to read date\n"); abx80x_rtc_read_time()
118 dev_err(&client->dev, "retrieved date/time is not valid.\n"); abx80x_rtc_read_time()
144 dev_err(&client->dev, "Unable to write to date registers\n"); abx80x_rtc_set_time()
H A Drtc-bq32k.c43 uint8_t date; member in struct:bq32k_regs
99 tm->tm_mday = bcd2bin(regs.date); bq32k_rtc_read_time()
116 regs.date = bin2bcd(tm->tm_mday); bq32k_rtc_set_time()
H A Drtc-st-lpc.c261 * The RTC-LPC is able to manage date.year > 2038 st_rtc_probe()
262 * but currently the kernel can not manage this date! st_rtc_probe()
263 * If the RTC-LPC has a date.year > 2038 then st_rtc_probe()
H A Drtc-sysfs.c24 * attributes including date, time, since_epoch, and wakealarm.
48 static DEVICE_ATTR_RO(date);
137 * exact YYYY-MM-DD HH:MM[:SS] date *must* disable their RTC wakealarm_show()
H A Drtc-wm831x.c120 * Read current time and date in RTC
170 * Set current time and date in RTC
234 * Read alarm time and date in RTC
H A Drtc-wm8350.c36 * Read current time and date in RTC
95 * Set current time and date in RTC
144 * Read alarm time and date in RTC
H A Drtc-m41t94.c43 buf[0] = 0x80 | M41T94_REG_SECONDS; /* write time + date */ m41t94_set_time()
H A Drtc-tile.c43 dev_warn(dev, "Read invalid date/time from RTC\n"); read_rtc_time()
H A Drtc-pcf2127.c67 * it will be cleared once the new date is saved pcf2127_get_datetime()
70 "oscillator stop detected, date/time is not reliable\n"); pcf2127_get_datetime()
H A Drtc-ds1305.c30 /* RTC date/time ... the main special cases are that we:
171 * Get/set of date and time is pretty normal.
181 /* Use write-then-read to get all the date/time registers ds1305_get_time()
224 /* Write registers starting at the first time/date address. */ ds1305_set_time()
H A Drtc-pcf85063.c56 {/* read status + date */ pcf85063_get_datetime()
H A Drtc-mpc5121.c186 /* date */ mpc5200_rtc_set_time()
192 /* set date sequence */ mpc5200_rtc_set_time()
H A Drtc-mt6397.c171 /* rtc_tm_to_time64 covert Gregorian date to seconds since mtk_rtc_read_time()
172 * 01-01-1970 00:00:00, and this date is Thursday. mtk_rtc_read_time()
H A Drtc-ds1307.c26 * setting the date and time), Linux can ignore the non-clock features.
66 * basic RTC date and time functionality; be careful using them.
356 /* read the RTC date and time registers all at once */ ds1307_get_time()
424 * these bits were cleared when preparing the date/time ds1307_set_time()
723 /* Set alarm match: second, minute, hour, day, date, month. */ mcp794xx_set_alarm()
H A Drtc-at91sam9.c106 * Read current time and date in RTC
135 * Set current time and date in RTC
H A Drtc-ds1511.c283 dev_err(dev, "retrieved date/time is not valid.\n"); ds1511_rtc_read_time()
294 * date/hours/mins/secs matches. the ds1511 has many more
H A Drtc-ds1685.c370 * A fourth alarm register for the month date is also available in bank1 for
393 /* Check month date. */ ds1685_rtc_read_alarm()
465 /* Check the month date for validity. */ ds1685_rtc_set_alarm()
697 * account the 'date' register in bank1 in addition to the ds1685_rtc_work_queue()
1577 * ds1685_rtc_sysfs_time_regs_bcd_lookup - time/date reg bit lookup function.
1598 * ds1685_rtc_sysfs_time_regs_show - reads a time/date register via sysfs.
1630 * ds1685_rtc_sysfs_time_regs_store - writes a time/date register via sysfs.
1678 * @reg: time/date register to read or write.
H A Drtc-m48t59.c156 * Read alarm time and date in RTC
203 * Set alarm time and date in RTC
H A Drtc-mxc.c282 * This function reads the current RTC time into tm in Gregorian date.
299 * This function sets the internal RTC time based on tm in Gregorian date.
H A Drtc-pcf8563.c217 "low voltage detected, date/time is not reliable.\n"); pcf8563_get_datetime()
293 dev_info(dev, "low voltage detected, date/time is not reliable.\n"); pcf8563_rtc_ioctl()
H A Drtc-pl031.c115 * Convert Gregorian date to ST v2 RTC format.
151 * Convert ST v2 RTC format to Gregorian date.
H A Drtc-x1205.c106 {/* read date */ x1205_get_datetime()
114 /* read date registers */ x1205_get_datetime()
H A Drtc-isl12022.c121 "date and time is not reliable.\n", isl12022_get_datetime()
H A Drtc-rc5t583.c61 * Gets current rc5t583 RTC time and date parameters.
H A Drtc-rs5c348.c141 dev_err(&spi->dev, "retrieved date/time is not valid.\n"); rs5c348_rtc_read_time()
H A Drtc-tps65910.c48 * Gets current tps65910 RTC time and date parameters.
/linux-4.4.14/arch/sh/boards/mach-sdk7786/
H A Dfpga.c57 u16 version, date; sdk7786_fpga_init() local
66 date = fpga_read_reg(FPGADR); sdk7786_fpga_init()
70 ((date >> 12) & 0xf) + 2000, sdk7786_fpga_init()
71 (date >> 8) & 0xf, bcd2bin(date & 0xff)); sdk7786_fpga_init()
/linux-4.4.14/fs/fat/
H A Dmisc.c6 * and date_dos2unix for date==0 by Igor Zhbanov(bsg@uniyar.ac.ru)
166 * date: 0 - 4: day (1 - 31)
167 * date: 5 - 8: month (1 - 12)
168 * date: 9 - 15: year (0 - 127) from 1980
188 /* Convert a FAT time/date pair to a UNIX date (seconds since 1 1 70). */ fat_time_fat2unix()
192 u16 time = le16_to_cpu(__time), date = le16_to_cpu(__date); fat_time_fat2unix() local
195 year = date >> 9; fat_time_fat2unix()
196 month = max(1, (date >> 5) & 0xf); fat_time_fat2unix()
197 day = max(1, date & 0x1f) - 1; fat_time_fat2unix()
226 /* Convert linear UNIX date to a FAT time/date pair. */ fat_time_unix2fat()
228 __le16 *time, __le16 *date, u8 *time_cs) fat_time_unix2fat()
238 *date = cpu_to_le16((0 << 9) | (1 << 5) | 1); fat_time_unix2fat()
245 *date = cpu_to_le16((127 << 9) | (12 << 5) | 31); fat_time_unix2fat()
259 *date = cpu_to_le16(tm.tm_year << 9 | tm.tm_mon << 5 | tm.tm_mday); fat_time_unix2fat()
227 fat_time_unix2fat(struct msdos_sb_info *sbi, struct timespec *ts, __le16 *time, __le16 *date, u8 *time_cs) fat_time_unix2fat() argument
H A Dnamei_msdos.c231 __le16 time, date; msdos_add_entry() local
239 fat_time_unix2fat(sbi, ts, &time, &date, NULL); msdos_add_entry()
244 de.date = date; msdos_add_entry()
H A Ddir.c1140 __le16 date, time; fat_alloc_new_dir() local
1155 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); fat_alloc_new_dir()
1164 de[0].date = de[1].date = date; fat_alloc_new_dir()
1169 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date; fat_alloc_new_dir()
/linux-4.4.14/drivers/staging/wilc1000/
H A Dhost_interface.h6 * @date 8 March 2012
198 * @date 25 March 2012
354 * @date 8 March 2012
369 * @date 8 March 2012
382 * @date 8 March 2012
403 * @date 8 March 2012
419 * @date 28 Feb 2013
439 * @date 8 March 2012
454 * @date 15 April 2013
472 * @date 8 March 2012
493 * @date 8 March 2012
515 * @date 8 March 2012
539 * @date 8 March 2012
557 * @date 8 March 2012
573 * @date 8 March 2012
587 * @date 19 April 2012
600 * @date 16 July 2012
613 * @date 19 march 2014
630 * @date 8 March 2012
647 * @date 8 March 2012
660 * @date 8 March 2012
680 * @date 19 DEC 2013
695 * @date 8 March 2012
708 * @date 8 March 2012
734 * @date 8 March 2012
748 * @date 8 March 2012
766 * @date 8 March 2012
784 * @date 8 March 2012
801 * @date 8 March 2012
815 * @date 8 March 2012
834 * @date 8 March 2012
851 * @date 8 March 2012
865 * @date 8 March 2012
878 * @date 8 March 2012
889 * @date 8 March 2012
913 * @date 10 Julys 2012
932 * @date 10 Julys 2012
948 * @date 12 July 2012
964 * @date 09 April 2014
979 * @date 15 July 2012
995 * @date 15 July 2012
1013 * @date 24 November 2012
1025 * @date 24 November 2012
1035 * @date
1047 * @date
1058 * @date
1070 * @date
1081 * @date
1097 * @date
1108 * @date
1118 * @date
H A Dwilc_msgqueue.h9 * @date 30 Aug 2010
40 * @date 30 Aug 2010
57 * @date 30 Aug 2010
76 * @date 30 Aug 2010
89 * @date 30 Aug 2010
H A Dwilc_msgqueue.c10 * @date 1 Sep 2010
26 * @date 1 Sep 2010
52 * @date 1 Sep 2010
109 * @date 1 Sep 2010
H A Dlinux_mon.c6 * @date 01 MAR 2012
41 * @date 12 JUL 2012
211 * @date 12 JUL 2012
317 * @date 12 JUL 2012
366 * @date 12 JUL 2012
H A Dwilc_wfi_cfgoperations.c9 * @date 31 Aug 2010
352 * @date
481 * @date 01 MAR 2012
524 * @date 01 MAR 2012
657 * @date 01 MAR 2012
690 * @date 01 MAR 2012
779 * @date 01 MAR 2012
1029 * @date 01 MAR 2012
1071 * @date 01 MAR 2012
1353 * @date 01 MAR 2012
1442 * @date 01 MAR 2012
1489 * @date 01 MAR 2012
1516 * @date 01 MAR 2012
1605 * @date 01 MAR 2012
1622 * @date 01 MAR 2012
1681 * @date 01 MAR 2012
1731 * @date 01 MAR 2012
1778 * @date 01 MAR 2012
1804 * @date 12 DEC 2012
1857 * @date 12 DEC 2012
1910 * @date 2 JUN 2013
2032 * @date 20 MAY 2013
2050 * @date 9 JUNE 2013
2077 * @date 15 MAY 2013
2114 * @date 01 MAR 2012
2164 * @date 01 MAR 2012
2188 * @date 01 JUL 2012
2380 * @date 01 JUL 2012
2439 * @date 01 MAR 2012
2459 * @date 01 MAR 2012
2489 * @date 01 JUL 2012
2523 * @date 01 MAR 2012
2874 * @date 23 JUL 2013
2919 * @date 23 JUL 2013
2947 * @date 23 JUL 2013
2979 * @date 01 MAR 2012
3048 * @date 01 MAR 2012
3090 * @date 01 MAR 2012
3160 * @date 01 JUL 2012
3203 * @date 01 JUL 2012
3260 * @date 01 MAR 2012
3301 * @date 01 MAR 2012
3350 * @date 01 MAR 2012
3429 * @date 01 MAR 2012
3469 * @date 01 MAR 2012
3508 * @date 01 MAR 2012
H A Dcoreconfigurator.c7 * @date 1 Mar 2012
344 * @date 1 Mar 2012
466 * @date 1 Mar 2012
499 * @date 2 Apr 2012
551 * @date 2 Apr 2012
588 * @date 1 Mar 2012
H A Dcoreconfigurator.h7 * @date 1 Mar 2012
H A Dwilc_wfi_cfgoperations.h6 * @date 31 Aug 2010
H A Dwilc_wfi_netdevice.h5 * @date 01 MAR 2012
/linux-4.4.14/arch/alpha/include/asm/
H A Dmc146818rtc.h16 * an ISA port access but the way to access the date register differs ...
/linux-4.4.14/arch/s390/boot/
H A DMakefile6 tr -c '[0-9A-Za-z]' '_'`__`date | \
/linux-4.4.14/arch/sparc/include/asm/
H A Dmc146818rtc_32.h16 * an ISA port access but the way to access the date register differs ...
H A Dmc146818rtc_64.h17 * an ISA port access but the way to access the date register differs ...
H A Dcacheflush_32.h52 * frames are up to date.
/linux-4.4.14/arch/m32r/include/asm/
H A Dmc146818rtc.h16 * an ISA port access but the way to access the date register differs ...
/linux-4.4.14/arch/arm/include/asm/
H A Dmc146818rtc.h19 * an ISA port access but the way to access the date register differs ...
/linux-4.4.14/fs/ntfs/
H A Dquota.c31 * ntfs_mark_quotas_out_of_date - mark the quotas out of date on an ntfs volume
32 * @vol: ntfs volume on which to mark the quotas out of date
34 * Mark the quotas out of date on the ntfs volume @vol and return 'true' on
79 /* If quotas are already marked out of date, no need to do anything. */ ntfs_mark_quotas_out_of_date()
84 * pending deletes, no need to mark the quotas out of date. ntfs_mark_quotas_out_of_date()
91 * Set the QUOTA_FLAG_OUT_OF_DATE bit thus marking quotas out of date. ntfs_mark_quotas_out_of_date()
103 * We set the flag so we do not try to mark the quotas out of date ntfs_mark_quotas_out_of_date()
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/
H A Dkvm.sh49 ds=`date +%Y.%m.%d-%H:%M:%S`
312 print "echo ----Start batch: `date`";
313 print "echo ----Start batch: `date` >> " rd "/log";
329 print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date`";
330 print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date` >> " rd "/log";
336 print "echo ", cfr[jn], cpusr[jn] ovf ": Waiting for build to complete. `date`";
337 print "echo ", cfr[jn], cpusr[jn] ovf ": Waiting for build to complete. `date` >> " rd "/log";
342 print "echo ", cfr[jn], cpusr[jn] ovf ": Build complete. `date`";
343 print "echo ", cfr[jn], cpusr[jn] ovf ": Build complete. `date` >> " rd "/log";
351 print "\techo ----", cfr[j], cpusr[j] ovf ": Starting kernel. `date`";
352 print "\techo ----", cfr[j], cpusr[j] ovf ": Starting kernel. `date` >> " rd "/log";
358 print "\techo ---- All kernel runs complete. `date`";
359 print "\techo ---- All kernel runs complete. `date` >> " rd "/log";
398 echo " --- `date` Test summary:"
/linux-4.4.14/drivers/media/platform/vivid/
H A Dvivid-rds-gen.c59 unsigned date; vivid_rds_generate() local
100 * EN 50067:1998 to convert a UTC date to an RDS Modified vivid_rds_generate()
105 date = 14956 + tm.tm_mday + ((tm.tm_year - l) * 1461) / 4 + vivid_rds_generate()
112 data[1].lsb |= date >> 15; vivid_rds_generate()
114 data[2].lsb = (date << 1) & 0xfe; vivid_rds_generate()
116 data[2].msb = (date >> 7) & 0xff; vivid_rds_generate()
/linux-4.4.14/scripts/
H A Dmkcompile_h41 TIMESTAMP=`date`
85 # We don't consider the file changed if only the date/time changed.
87 # causing compile.h to be updated (including date/time) due to the
H A DMakefile33 # These targets are used internally to avoid "is up to date" messages
H A Dbootgraph.pl51 -header Insert kernel version and date
156 my $date = `date`;
159 print "<text transform=\"translate($xheader,$cyheader)\">Date: $date</text>\n";
H A Dkernel-doc298 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
1007 print " <date>$man_date</date>\n";
1084 print " <date>$man_date</date>\n";
1178 print " <date>$man_date</date>\n";
1245 print " <date>$man_date</date>\n";
/linux-4.4.14/arch/mips/include/asm/
H A Dm48t37.h26 volatile u8 date; member in struct:m48t37_rtc
/linux-4.4.14/arch/sh/include/asm/
H A Drtc.h12 #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
H A Dmmu_context.h63 /* It's up to date, do nothing */ get_mmu_context()
/linux-4.4.14/include/linux/
H A Dgetcpu.h5 out of date, but will be faster.
H A Dsdb.h24 * date is hex (e.g 0x20120501), name is UTF-8, blank-filled
31 uint32_t date; /* 0x28..0x2b */ member in struct:sdb_product
125 uint32_t date; /* 0x2c-0x2f */ member in struct:sdb_synthesis
H A Dds17287rtc.h31 #define DS_B1_DALARM 0x49 /* date alarm */
H A Dmc146818rtc.h96 # define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
H A Dcnt32_to_63.h52 * reader if the value in memory is up to date or not with regards to the
H A Dnd.h117 * @buf is up-to-date upon return from this routine.
/linux-4.4.14/arch/powerpc/include/asm/
H A Drtc.h41 #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
52 /* Set the current date and time in the real time clock. */ set_rtc_time()
H A Dmc146818rtc.h24 * an ISA port access but the way to access the date register differs ...
H A Dsmu.h86 * The "RTC" part of the SMU controls the date, time, powerup
94 #define SMU_CMD_RTC_SET_PWRUP_TIMER 0x00 /* i: 7 bytes date */
95 #define SMU_CMD_RTC_GET_PWRUP_TIMER 0x01 /* o: 7 bytes date */
104 #define SMU_CMD_RTC_SET_DATETIME 0x80 /* i: 7 bytes date */
105 #define SMU_CMD_RTC_GET_DATETIME 0x81 /* o: 7 bytes date */
/linux-4.4.14/tools/testing/selftests/pstore/
H A Dcommon_tests60 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`_${UUID}/
66 date > $LOG_FILE
/linux-4.4.14/arch/x86/kernel/cpu/microcode/
H A Dintel.c396 unsigned int sig, pf, rev, total_size, data_size, date; show_saved_mc() local
425 date = mc_saved_header->date; show_saved_mc()
427 pr_debug("mc_saved[%d]: sig=0x%x, pf=0x%x, rev=0x%x, toal size=0x%x, date = %04x-%02x-%02x\n", show_saved_mc()
429 date & 0xffff, show_saved_mc()
430 date >> 24, show_saved_mc()
431 (date >> 16) & 0xff); show_saved_mc()
576 print_ucode_info(struct ucode_cpu_info *uci, unsigned int date) print_ucode_info() argument
580 pr_info("CPU%d microcode updated early to revision 0x%x, date = %04x-%02x-%02x\n", print_ucode_info()
583 date & 0xffff, print_ucode_info()
584 date >> 24, print_ucode_info()
585 (date >> 16) & 0xff); print_ucode_info()
626 *current_mc_date_p = mc_intel->hdr.date; print_ucode()
647 print_ucode_info(uci, mc_intel->hdr.date); print_ucode()
683 print_ucode_info(uci, mc_intel->hdr.date); apply_microcode_early()
890 pr_info("CPU%d updated to revision 0x%x, date = %04x-%02x-%02x\n", apply_microcode_intel()
892 mc_intel->hdr.date & 0xffff, apply_microcode_intel()
893 mc_intel->hdr.date >> 24, apply_microcode_intel()
894 (mc_intel->hdr.date >> 16) & 0xff); apply_microcode_intel()
/linux-4.4.14/fs/hfs/
H A Dhfs.h195 __be32 CrDat; /* The creation date */
196 __be32 MdDat; /* The modified date */
197 __be32 BkDat; /* The last backup date */
216 __be32 CrDat; /* The creation date */
217 __be32 MdDat; /* The modification date */
218 __be32 BkDat; /* The last backup date */
242 __be32 drCrDate; /* fs creation date/time */
243 __be32 drLsMod; /* fs modification date/time */
260 __be32 drVolBkUp; /* fs backup date/time */
/linux-4.4.14/arch/powerpc/platforms/pasemi/
H A Dtime.c26 /* Let's just return a fake date right now */ pas_get_boot_time()
/linux-4.4.14/arch/mips/lasat/image/
H A DMakefile22 -D TIMESTAMP=$(shell date +%s)
/linux-4.4.14/arch/s390/include/uapi/asm/
H A Dhypfs.h41 char date[8]; /* MM/DD/YY in EBCDIC */ member in struct:hypfs_diag0c_entry
H A Dvtoc.h93 struct vtoc_labeldate DS1CREDT; /* creation date: ydd */
94 struct vtoc_labeldate DS1EXPDT; /* expiration date */
99 struct vtoc_labeldate DS1REFD; /* date last referenced */
202 __u8 format_date[6]; /* Disk FORMAT date */
/linux-4.4.14/arch/arm/mach-omap2/
H A Dprcm_mpu_44xx_54xx.h15 * up-to-date with the file contents.
H A Dcm-regbits-7xx.h15 * up-to-date with the file contents.
H A Dprcm_mpu7xx.h15 * up-to-date with the file contents.
H A Dprm44xx_54xx.h15 * up-to-date with the file contents.
H A Dcm-regbits-54xx.h14 * up-to-date with the file contents.
H A Dctrl_module_wkup_44xx.h13 * up-to-date with the file contents.
H A Dprcm_mpu54xx.h14 * up-to-date with the file contents.
H A Dprm-regbits-44xx.h15 * up-to-date with the file contents.
H A Dcm-regbits-44xx.h15 * up-to-date with the file contents.
H A Dprcm_mpu44xx.h15 * up-to-date with the file contents.
H A Dscrm44xx.h12 * up-to-date with the file contents.
H A Dscrm54xx.h12 * up-to-date with the file contents.
/linux-4.4.14/fs/ncpfs/
H A Dncp_fs.h65 int ncp_date_dos2unix(__le16 time, __le16 date);
66 void ncp_date_unix2dos(int unix_date, __le16 * time, __le16 * date);
H A Ddir.c1193 /* Convert a MS-DOS time/date pair to a UNIX date (seconds since 1 1 70). */
1197 unsigned short time = le16_to_cpu(t), date = le16_to_cpu(d); ncp_date_dos2unix() local
1201 date == 0, bad things happen */ ncp_date_dos2unix()
1202 month = ((date >> 5) - 1) & 15; ncp_date_dos2unix()
1203 year = date >> 9; ncp_date_dos2unix()
1205 86400 * ((date & 31) - 1 + day_n[month] + (year / 4) + ncp_date_dos2unix()
1212 /* Convert linear UNIX date to a MS-DOS time/date pair. */
1214 ncp_date_unix2dos(int unix_date, __le16 *time, __le16 *date) ncp_date_unix2dos() argument
1236 *date = cpu_to_le16(nl_day - day_n[month - 1] + 1 + (month << 5) + (year << 9)); ncp_date_unix2dos()
/linux-4.4.14/security/apparmor/include/
H A Dcontext.h131 * Returns: up to date confining profile or the ns unconfined profile (NOT NULL)
133 * This fn will not update the tasks cred to the most up to date version
144 * Returns: up to date confining profile or the ns unconfined profile (NOT NULL)
/linux-4.4.14/drivers/staging/rtl8188eu/include/
H A Dfw.h46 u8 date; member in struct:rtl92c_firmware_header
/linux-4.4.14/drivers/staging/gs_fpgaboot/
H A Dgs_fpgaboot.h52 char date[MAX_STR]; member in struct:fpgaimage
H A Dgs_fpgaboot.c130 pr_info("date: %s\n", fimage->date); gs_print_header()
146 readinfo_bitstream(bitdata, fimage->date, &offset); gs_read_bitstream()
/linux-4.4.14/drivers/net/ieee802154/
H A Datusb.h23 #define ATUSB_BUILD_SIZE 256 /* maximum build version/date message length */
/linux-4.4.14/drivers/platform/chrome/
H A Dchromeos_pstore.c21 * combination are known to date.
/linux-4.4.14/arch/x86/include/asm/
H A Dmicrocode_intel.h9 unsigned int date; member in struct:microcode_header_intel
H A Dmc146818rtc.h91 * an ISA port access but the way to access the date register differs ...
/linux-4.4.14/include/uapi/linux/
H A Dmsdos_fs.h180 __le16 cdate; /* Creation date */
181 __le16 adate; /* Last access date */
183 __le16 time,date,start;/* time, date and first cluster */ member in struct:msdos_dir_entry
H A Diso_fs.h142 /* high sierra is identical to iso, except that the date is only 6 bytes, and
150 char date [ISODCL (19, 25)]; /* 7 by 711 */ member in struct:iso_directory_record
/linux-4.4.14/arch/m68k/include/asm/
H A Drtc.h27 #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
/linux-4.4.14/arch/mips/boot/
H A Decoff.h7 long f_timdat; /* time & date stamp */
/linux-4.4.14/arch/arm/mach-rpc/
H A Dtime.c12 * 10-Oct-1996 RMK Brought up to date with arch-sa110eval
/linux-4.4.14/tools/testing/selftests/ftrace/
H A Dftracetest95 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`/
112 date > $LOG_FILE
/linux-4.4.14/drivers/staging/speakup/
H A Dspk_priv.h36 #define SYNTH_CHECK 20030716 /* today's date ought to do for check value */
/linux-4.4.14/drivers/isdn/hysdn/
H A Dhysdn_pof.h76 #define TAG_TIMESTMP 0x0010 /* date/time stamp of version */
/linux-4.4.14/drivers/gpu/drm/savage/
H A Dsavage_drv.c66 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/tdfx/
H A Dtdfx_drv.c63 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/udl/
H A Dudl_drv.c61 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/virtio/
H A Dvirtgpu_drm_bus.c88 driver->date, dev->primary->index); drm_virtio_init()
H A Dvirtgpu_drv.c158 .date = DRIVER_DATE,
/linux-4.4.14/drivers/nfc/s3fwrn5/
H A Dfirmware.h78 char date[13]; member in struct:s3fwrn5_fw_image
H A Dfirmware.c310 memcpy(fw->date, fw->fw->data + 0x00, 12); s3fwrn5_fw_request_firmware()
311 fw->date[12] = '\0'; s3fwrn5_fw_request_firmware()
/linux-4.4.14/drivers/gpu/drm/mgag200/
H A Dmgag200_drv.c99 .date = DRIVER_DATE,
/linux-4.4.14/arch/alpha/lib/
H A Dclear_user.S7 * We have to make sure that $0 is always up-to-date and contains the
H A Dcopy_user.S8 * Notably, we have to make sure that $0 is always up-to-date and
/linux-4.4.14/arch/sh/include/mach-common/mach/
H A Dsdk7780.h57 #define FPGA_FPDATER (PA_FPGA + 0x0E0) /* FPGA date */
/linux-4.4.14/arch/parisc/include/asm/
H A Drtc.h31 #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
/linux-4.4.14/arch/powerpc/boot/
H A Dredboot.h22 unsigned int bi_bdate; /* bootstrap date, i.e. 0x19971106 */
/linux-4.4.14/arch/ia64/kernel/
H A DMakefile74 # We use internal kbuild rules to avoid the "is up to date" message from make
/linux-4.4.14/arch/arm/mm/
H A Dcopypage-v4wt.c21 * subsequent reads are up to date.
/linux-4.4.14/fs/ocfs2/
H A Duptodate.c6 * Tracking the up-to-date-ness of a local buffer_head with respect to
27 * in a clustered environment - a buffer may be marked up to date on
34 * We track the existence of up to date buffers on the inodes which
40 * this node then it *must* be up to date.
42 * which may be invalid (even if we have an up to date tracking
287 /* Ok, locally the buffer is marked as up to date, now search ocfs2_buffer_uptodate()
H A Dheartbeat.c7 * up to date, and fire off recovery when needed.
H A Dmmap.c100 * Since we know the page is up to date, we don't have to __ocfs2_page_mkwrite()
/linux-4.4.14/sound/firewire/bebob/
H A Dbebob_maudio.c98 u64 date; snd_bebob_maudio_load_firmware() local
105 /* check date of software used to build */ snd_bebob_maudio_load_firmware()
107 &date, sizeof(u64)); snd_bebob_maudio_load_firmware()
111 * firmware version 5058 or later has date later than "20070401", but snd_bebob_maudio_load_firmware()
112 * 'date' is not null-terminated. snd_bebob_maudio_load_firmware()
114 if (date < 0x3230303730343031LL) { snd_bebob_maudio_load_firmware()
/linux-4.4.14/fs/reiserfs/
H A Dtail_conversion.c127 * up to date. this avoids overwriting good data from direct2indirect()
150 * out the unused part of the block (it was not up to date before) direct2indirect()
271 * the page was locked and this part of the page was up to date when indirect2direct()
/linux-4.4.14/drivers/usb/class/
H A Dcdc-acm.h92 unsigned int country_rel_date; /* release date of version */
/linux-4.4.14/drivers/gpu/drm/sis/
H A Dsis_drv.c118 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/via/
H A Dvia_drv.c97 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/r128/
H A Dr128_drv.c78 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/bochs/
H A Dbochs_drv.c89 .date = "20130925",
/linux-4.4.14/drivers/gpu/drm/cirrus/
H A Dcirrus_drv.c140 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/
H A Ddrm_platform.c62 driver->date, dev->primary->index); drm_get_platform_dev()
H A Ddrm_ioc32.c81 u32 date_len; /**< Length of date buffer */
82 u32 date; /**< User-space buffer to hold date */ member in struct:drm_version_32
104 || __put_user((void __user *)(unsigned long)v32.date, compat_drm_version()
105 &version->date) compat_drm_version()
/linux-4.4.14/drivers/gpu/drm/i810/
H A Di810_drv.c73 .date = DRIVER_DATE,
/linux-4.4.14/arch/tile/include/asm/
H A Dcache.h60 * separate in case we change our minds at a future date.
/linux-4.4.14/drivers/char/
H A Dtoshiba.c316 4) BIOS date (in SCI date format) proc_toshiba_show()
426 * date, and SCI version.
478 /* get the BIOS date */ tosh_probe()
H A Dds1302.c155 /* ioctl that supports RTC_RD_TIME and RTC_SET_TIME (read and set time/date). */
162 case RTC_RD_TIME: /* read the time/date from RTC */ rtc_ioctl()
/linux-4.4.14/arch/cris/arch-v10/kernel/
H A Dtraps.c22 * function is called, and current->thread.usp isn't up to date for the show_registers()
/linux-4.4.14/arch/m68k/mvme16x/
H A Drtc.c45 case RTC_RD_TIME: /* Read the time/date from RTC */ rtc_ioctl()
/linux-4.4.14/arch/arm64/kernel/
H A Dsys_compat.c81 * (at a later date, we may want to allow this call to not flush compat_arm_syscall()
/linux-4.4.14/arch/avr32/include/asm/
H A Dmmu_context.h46 /* It's up to date, do nothing */ get_mmu_context()
/linux-4.4.14/arch/blackfin/kernel/
H A Dtime.c154 printk(KERN_NOTICE "bfin-rtc: invalid date; resetting\n"); time_init()
/linux-4.4.14/tools/testing/selftests/timers/
H A Dset-2038.c77 ret = system("date"); do_tests()
H A Drtctest.c121 /* Read the RTC time/date */ main()
128 fprintf(stderr, "\n\nCurrent RTC date/time is %d-%d-%d, %02d:%02d:%02d.\n", main()
/linux-4.4.14/drivers/staging/gdm72xx/
H A Dusb_boot.c49 char date[32]; member in struct:img_header
63 char date[32]; member in struct:fw_info
/linux-4.4.14/drivers/isdn/act2000/
H A Dcapi.h73 __u8 date[20]; /* date fields */ member in union:actcapi_infoel
/linux-4.4.14/drivers/infiniband/hw/qib/
H A Dqib_qsfp.h126 /* Bytes 212..219 are date-code YYMMDD (MM==1 for Jan) */
166 u8 date[QSFP_DATE_LEN]; member in struct:qib_qsfp_cache
H A Dqib_qsfp.c388 /* Second checksum covers 192 to (serial, date, lot) */ qib_refresh_qsfp_cache()
400 ret = qsfp_read(ppd, QSFP_DATE_OFFS, &cp->date, QSFP_DATE_LEN); qib_refresh_qsfp_cache()
404 cks += cp->date[idx]; qib_refresh_qsfp_cache()
539 QSFP_DATE_LEN, cd.date); qib_qsfp_dump()
/linux-4.4.14/drivers/base/power/
H A Dtrace.c37 * are dependable either. And if the date isn't valid, either the
116 pr_info("RTC time: %2d:%02d:%02d, date: %02d/%02d/%02d\n", read_magic_time()
/linux-4.4.14/drivers/gpu/drm/fsl-dcu/
H A Dfsl_dcu_drm_drv.c216 .date = "20150213",
374 driver->date, drm->primary->index); fsl_dcu_drm_probe()
/linux-4.4.14/arch/alpha/kernel/
H A Drtc.c6 * This file contains date handling.
131 ??? This choice is may be out of date. The x86 port does alpha_rtc_set_mmss()
/linux-4.4.14/include/asm-generic/
H A Drtc.h30 #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
128 /* Set the current date and time in the real time clock. */ __set_rtc_time()
/linux-4.4.14/arch/mips/sibyte/swarm/
H A Drtc_m41t81.c71 #define M41T81REG_DT 0x05 /* date of month */
77 #define M41T81REG_ADT 0x0B /* alarm: date */
/linux-4.4.14/sound/soc/intel/atom/
H A Dsst-mfld-dsp.h237 unsigned char date[16]; /* Firmware build date */ member in struct:sst_fw_build_info
285 unsigned char b_date[16]; /* Lib build date */
/linux-4.4.14/drivers/mtd/nand/
H A Dsocrates_nand.c61 * @buf: buffer to store date
H A Dau1550nd.c126 * @buf: buffer to store date
167 * @buf: buffer to store date
/linux-4.4.14/drivers/gpu/drm/vc4/
H A Dvc4_drv.c118 .date = DRIVER_DATE,
/linux-4.4.14/drivers/infiniband/hw/usnic/
H A Dusnic_debugfs.c57 "build date: %s\n", usnic_debugfs_buildinfo_read()
/linux-4.4.14/drivers/net/ethernet/sfc/
H A Denum.h43 /* Please keep up-to-date w.r.t the following two #defines */
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/
H A Dl2t.h40 L2T_STATE_VALID, /* entry is up to date */
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/
H A Dl2t.h45 L2T_STATE_VALID, /* entry is up to date */
/linux-4.4.14/drivers/gpu/drm/ast/
H A Dast_drv.c207 .date = DRIVER_DATE,
/linux-4.4.14/drivers/crypto/vmx/
H A Dppc-xlate.pl99 # Some out-of-date 32-bit GNU assembler just can't handle cmplw...
/linux-4.4.14/drivers/gpu/drm/mga/
H A Dmga_drv.c82 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/msm/
H A Dmsm_gpu.h30 /* So far, with hardware that I've seen to date, we can have:
/linux-4.4.14/arch/blackfin/mach-bf609/include/mach/
H A Danomaly.h12 /* This file should be up to date with:
/linux-4.4.14/arch/cris/arch-v32/kernel/
H A Dtraps.c17 * function is called, and current->thread.usp isn't up to date for the show_registers()
/linux-4.4.14/fs/
H A Dmpage.c89 * return an up to date buffer. This is used to map that buffer into
94 * them. So when the buffer is up to date and the page size == block size,
95 * this marks the page up to date instead of adding new buffers.
107 * the page and the page just needs to be set up to date map_buffer_to_page()
/linux-4.4.14/fs/adfs/
H A Dadfs.h32 unsigned int stamped:1; /* RISC OS file has date/time */
/linux-4.4.14/fs/sysv/
H A Dialloc.c33 but we nevertheless keep it up to date. */
/linux-4.4.14/include/linux/ceph/
H A Dauth.h60 /* ensure that an existing authorizer is up to date */
/linux-4.4.14/include/linux/fpga/
H A Dfpga-mgr.h99 * @priv: low level driver private date
/linux-4.4.14/include/linux/fsl/bestcomm/
H A Dbestcomm.h192 mb(); /* ensure the bd is really up-to-date */ bcom_submit_next_buffer()
/linux-4.4.14/arch/m68k/bvme6000/
H A Drtc.c47 case RTC_RD_TIME: /* Read the time/date from RTC */ rtc_ioctl()
/linux-4.4.14/arch/arm/vfp/
H A Dvfphw.S147 @ the CPU number which contains the most up to date VFP context.
172 @ The context stored in the VFP hardware is up to date with this thread
H A Dvfpmodule.c62 * Is 'thread's most up to date state stored in this CPUs hardware?
526 * Ensure that the VFP state stored in 'thread->vfpstate' is up to date vfp_pm_init()
568 /* Ensure that the saved hwstate is up-to-date. */ vfp_preserve_user_clear_hwstate()
/linux-4.4.14/drivers/memstick/core/
H A Dmspro_block.c124 unsigned short date; member in struct:mspro_specfile
346 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "assembly date: " mspro_block_attr_show_sysinfo()
463 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "date: %d-%d-%d\n", mspro_block_attr_show_specfile()
464 (x_spfile->date >> 9) + 1980, mspro_block_attr_show_specfile()
465 (x_spfile->date >> 5) & 0xf, mspro_block_attr_show_specfile()
466 x_spfile->date & 0x1f); mspro_block_attr_show_specfile()
/linux-4.4.14/fs/cifs/
H A Dnetmisc.c966 u16 date = le16_to_cpu(le_date); cnvrtDosUnixTm() local
969 SMB_DATE *sd = (SMB_DATE *)&date; cnvrtDosUnixTm()
971 cifs_dbg(FYI, "date %d time %d\n", date, time); cnvrtDosUnixTm()
984 cifs_dbg(VFS, "illegal date, month %d day: %d\n", month, days); cnvrtDosUnixTm()
/linux-4.4.14/drivers/isdn/hisax/
H A Dl3_1tr6.c341 l3_1tr6_error(pc, "missing connect date", skb); l3_1tr6_connect()
440 l3_1tr6_error(pc, "missing connack date", skb); l3_1tr6_disc()
455 l3_1tr6_error(pc, "missing connack date", skb); l3_1tr6_connect_ack()
/linux-4.4.14/kernel/time/
H A Dtime.c314 * mktime64 - Converts date to seconds.
315 * Converts Gregorian date to seconds since 1970-01-01 00:00:00.
316 * Assumes input in normal date format, i.e. 1980-12-31 23:59:59
/linux-4.4.14/sound/soc/intel/baytrail/
H A Dsst-baytrail-ipc.c134 u8 date[16]; member in struct:sst_byt_fw_build_info
759 dev_info(byt->dev, "Build date: %s %s\n", sst_byt_dsp_init()
760 init.build_info.date, init.build_info.time); sst_byt_dsp_init()
/linux-4.4.14/drivers/usb/host/
H A Dehci-timer.c127 /* The status is up-to-date; restart or stop the schedule as needed */ ehci_poll_ASS()
173 /* The status is up-to-date; restart or stop the schedule as needed */ ehci_poll_PSS()
/linux-4.4.14/drivers/gpu/drm/i915/
H A Dintel_ringbuffer.h188 * an expensive kick to force a true read of the up-to-date seqno.
189 * However, the up-to-date seqno is not always required and the last
/linux-4.4.14/lib/
H A Dkfifo.c120 * make sure that the data in the fifo is up to date before kfifo_copy_in()
214 * make sure that the data in the fifo is up to date before kfifo_copy_from_user()
/linux-4.4.14/arch/powerpc/platforms/powernv/
H A Dopal-flash.c72 * The candidate image's release date is later than the system's firmware
73 * service entitlement date - service warranty period has expired
/linux-4.4.14/drivers/usb/misc/
H A Dcypress_cy7c63.c24 * For up-to-date information please visit:

Completed in 6366 milliseconds

1234