/linux-4.4.14/drivers/rtc/ |
D | rtc-rx4581.c | 105 unsigned char date[7]; in rx4581_get_datetime() local 133 date[0] = 0x80; in rx4581_get_datetime() 134 err = spi_write_then_read(spi, date, 1, date, 7); in rx4581_get_datetime() 156 date[0], date[1], date[2], date[3], date[4], date[5], date[6]); in rx4581_get_datetime() 158 tm->tm_sec = bcd2bin(date[RX4581_REG_SC] & 0x7F); in rx4581_get_datetime() 159 tm->tm_min = bcd2bin(date[RX4581_REG_MN] & 0x7F); in rx4581_get_datetime() 160 tm->tm_hour = bcd2bin(date[RX4581_REG_HR] & 0x3F); /* rtc hr 0-23 */ in rx4581_get_datetime() 161 tm->tm_wday = ilog2(date[RX4581_REG_DW] & 0x7F); in rx4581_get_datetime() 162 tm->tm_mday = bcd2bin(date[RX4581_REG_DM] & 0x3F); in rx4581_get_datetime() 163 tm->tm_mon = bcd2bin(date[RX4581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ in rx4581_get_datetime() [all …]
|
D | rtc-rx8025.c | 181 u8 date[7]; in rx8025_get_time() local 188 err = rx8025_read_regs(rx8025->client, RX8025_REG_SEC, 7, date); in rx8025_get_time() 194 date[0], date[1], date[2], date[3], date[4], in rx8025_get_time() 195 date[5], date[6]); in rx8025_get_time() 197 dt->tm_sec = bcd2bin(date[RX8025_REG_SEC] & 0x7f); in rx8025_get_time() 198 dt->tm_min = bcd2bin(date[RX8025_REG_MIN] & 0x7f); in rx8025_get_time() 200 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f); in rx8025_get_time() 202 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12 in rx8025_get_time() 203 + (date[RX8025_REG_HOUR] & 0x20 ? 12 : 0); in rx8025_get_time() 205 dt->tm_mday = bcd2bin(date[RX8025_REG_MDAY] & 0x3f); in rx8025_get_time() [all …]
|
D | rtc-rx8581.c | 100 unsigned char date[7]; in rx8581_get_datetime() local 128 7, date); in rx8581_get_datetime() 150 date[0], date[1], date[2], date[3], date[4], date[5], date[6]); in rx8581_get_datetime() 152 tm->tm_sec = bcd2bin(date[RX8581_REG_SC] & 0x7F); in rx8581_get_datetime() 153 tm->tm_min = bcd2bin(date[RX8581_REG_MN] & 0x7F); in rx8581_get_datetime() 154 tm->tm_hour = bcd2bin(date[RX8581_REG_HR] & 0x3F); /* rtc hr 0-23 */ in rx8581_get_datetime() 155 tm->tm_wday = ilog2(date[RX8581_REG_DW] & 0x7F); in rx8581_get_datetime() 156 tm->tm_mday = bcd2bin(date[RX8581_REG_DM] & 0x3F); in rx8581_get_datetime() 157 tm->tm_mon = bcd2bin(date[RX8581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ in rx8581_get_datetime() 158 tm->tm_year = bcd2bin(date[RX8581_REG_YR]); in rx8581_get_datetime()
|
D | rtc-rv8803.c | 115 u8 *date = date1; in rv8803_get_time() local 128 7, date); in rv8803_get_time() 139 date = date2; in rv8803_get_time() 142 tm->tm_sec = bcd2bin(date[RV8803_SEC] & 0x7f); in rv8803_get_time() 143 tm->tm_min = bcd2bin(date[RV8803_MIN] & 0x7f); in rv8803_get_time() 144 tm->tm_hour = bcd2bin(date[RV8803_HOUR] & 0x3f); in rv8803_get_time() 145 tm->tm_wday = ffs(date[RV8803_WEEK] & 0x7f); in rv8803_get_time() 146 tm->tm_mday = bcd2bin(date[RV8803_DAY] & 0x3f); in rv8803_get_time() 147 tm->tm_mon = bcd2bin(date[RV8803_MONTH] & 0x1f) - 1; in rv8803_get_time() 148 tm->tm_year = bcd2bin(date[RV8803_YEAR]) + 100; in rv8803_get_time() [all …]
|
D | rtc-spear.c | 209 unsigned int time, date; in spear_rtc_read_time() local 215 date = readl(config->ioaddr + DATE_REG); in spear_rtc_read_time() 219 tm->tm_mday = (date >> MDAY_SHIFT) & DAY_MASK; in spear_rtc_read_time() 220 tm->tm_mon = (date >> MONTH_SHIFT) & MONTH_MASK; in spear_rtc_read_time() 221 tm->tm_year = (date >> YEAR_SHIFT) & YEAR_MASK; in spear_rtc_read_time() 238 unsigned int time, date; in spear_rtc_set_time() local 246 date = (tm->tm_mday << MDAY_SHIFT) | (tm->tm_mon << MONTH_SHIFT) | in spear_rtc_set_time() 249 writel(date, config->ioaddr + DATE_REG); in spear_rtc_set_time() 265 unsigned int time, date; in spear_rtc_read_alarm() local 270 date = readl(config->ioaddr + ALARM_DATE_REG); in spear_rtc_read_alarm() [all …]
|
D | rtc-sunxi.c | 204 u32 date; in sunxi_rtc_getalarm() local 207 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_getalarm() 213 alrm_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); in sunxi_rtc_getalarm() 214 alrm_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); in sunxi_rtc_getalarm() 215 alrm_tm->tm_year = SUNXI_DATE_GET_YEAR_VALUE(date, in sunxi_rtc_getalarm() 236 u32 date, time; in sunxi_rtc_gettime() local 242 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_gettime() 244 } while ((date != readl(chip->base + SUNXI_RTC_YMD)) || in sunxi_rtc_gettime() 251 rtc_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); in sunxi_rtc_gettime() 252 rtc_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); in sunxi_rtc_gettime() [all …]
|
D | rtc-sun6i.c | 161 u32 date, time; in sun6i_rtc_gettime() local 167 date = readl(chip->base + SUN6I_RTC_YMD); in sun6i_rtc_gettime() 169 } while ((date != readl(chip->base + SUN6I_RTC_YMD)) || in sun6i_rtc_gettime() 176 rtc_tm->tm_mday = SUN6I_DATE_GET_DAY_VALUE(date); in sun6i_rtc_gettime() 177 rtc_tm->tm_mon = SUN6I_DATE_GET_MON_VALUE(date); in sun6i_rtc_gettime() 178 rtc_tm->tm_year = SUN6I_DATE_GET_YEAR_VALUE(date); in sun6i_rtc_gettime() 269 u32 date = 0; in sun6i_rtc_settime() local 283 date = SUN6I_DATE_SET_DAY_VALUE(rtc_tm->tm_mday) | in sun6i_rtc_settime() 288 date |= SUN6I_LEAP_SET_VALUE(1); in sun6i_rtc_settime() 315 writel(date, chip->base + SUN6I_RTC_YMD); in sun6i_rtc_settime()
|
D | rtc-vt8500.c | 112 u32 date, time; in vt8500_rtc_read_time() local 114 date = readl(vt8500_rtc->regbase + VT8500_RTC_DR); in vt8500_rtc_read_time() 120 tm->tm_mday = bcd2bin(date & DATE_DAY_MASK); in vt8500_rtc_read_time() 121 tm->tm_mon = bcd2bin((date & DATE_MONTH_MASK) >> DATE_MONTH_S) - 1; in vt8500_rtc_read_time() 122 tm->tm_year = bcd2bin((date & DATE_YEAR_MASK) >> DATE_YEAR_S) in vt8500_rtc_read_time() 123 + ((date >> DATE_CENTURY_S) & 1 ? 200 : 100); in vt8500_rtc_read_time()
|
D | rtc-at91rm9200.c | 119 unsigned int time, date; in at91_rtc_decodetime() local 124 date = at91_rtc_read(calreg); in at91_rtc_decodetime() 126 (date != at91_rtc_read(calreg))); in at91_rtc_decodetime() 137 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */ in at91_rtc_decodetime() 138 tm->tm_year += bcd2bin((date & AT91_RTC_YEAR) >> 8); /* year */ in at91_rtc_decodetime() 140 tm->tm_wday = bcd2bin((date & AT91_RTC_DAY) >> 21) - 1; /* day of the week [0-6], Sunday=0 */ in at91_rtc_decodetime() 141 tm->tm_mon = bcd2bin((date & AT91_RTC_MONTH) >> 16) - 1; in at91_rtc_decodetime() 142 tm->tm_mday = bcd2bin((date & AT91_RTC_DATE) >> 24); in at91_rtc_decodetime()
|
D | rtc-m48t35.c | 34 u8 date; member 67 tm->tm_mday = readb(&priv->reg->date); in m48t35_read_time() 131 writeb(day, &priv->reg->date); in m48t35_set_time()
|
D | rtc-bq32k.c | 43 uint8_t date; member 99 tm->tm_mday = bcd2bin(regs.date); in bq32k_rtc_read_time() 116 regs.date = bin2bcd(tm->tm_mday); in bq32k_rtc_set_time()
|
D | rtc-sysfs.c | 48 static DEVICE_ATTR_RO(date);
|
/linux-4.4.14/arch/sh/boards/mach-sdk7786/ |
D | fpga.c | 57 u16 version, date; in sdk7786_fpga_init() local 66 date = fpga_read_reg(FPGADR); in sdk7786_fpga_init() 70 ((date >> 12) & 0xf) + 2000, in sdk7786_fpga_init() 71 (date >> 8) & 0xf, bcd2bin(date & 0xff)); in sdk7786_fpga_init()
|
/linux-4.4.14/fs/fat/ |
D | misc.c | 192 u16 time = le16_to_cpu(__time), date = le16_to_cpu(__date); in fat_time_fat2unix() local 195 year = date >> 9; in fat_time_fat2unix() 196 month = max(1, (date >> 5) & 0xf); in fat_time_fat2unix() 197 day = max(1, date & 0x1f) - 1; in fat_time_fat2unix() 228 __le16 *time, __le16 *date, u8 *time_cs) in fat_time_unix2fat() argument 238 *date = cpu_to_le16((0 << 9) | (1 << 5) | 1); in fat_time_unix2fat() 245 *date = cpu_to_le16((127 << 9) | (12 << 5) | 31); in fat_time_unix2fat() 259 *date = cpu_to_le16(tm.tm_year << 9 | tm.tm_mon << 5 | tm.tm_mday); in fat_time_unix2fat()
|
D | namei_msdos.c | 231 __le16 time, date; in msdos_add_entry() local 239 fat_time_unix2fat(sbi, ts, &time, &date, NULL); in msdos_add_entry() 244 de.date = date; in msdos_add_entry()
|
D | dir.c | 1140 __le16 date, time; in fat_alloc_new_dir() local 1155 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in fat_alloc_new_dir() 1164 de[0].date = de[1].date = date; in fat_alloc_new_dir() 1169 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date; in fat_alloc_new_dir()
|
D | namei_vfat.c | 590 __le16 time, date; in vfat_build_slots() local 644 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in vfat_build_slots() 646 de->date = de->cdate = de->adate = date; in vfat_build_slots()
|
D | fat.h | 407 __le16 *time, __le16 *date, u8 *time_cs);
|
D | inode.c | 501 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0); in fat_fill_inode() 782 &raw_entry->date, NULL); in __fat_write_inode()
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | vivid-rds-gen.c | 59 unsigned date; in vivid_rds_generate() local 105 date = 14956 + tm.tm_mday + ((tm.tm_year - l) * 1461) / 4 + in vivid_rds_generate() 112 data[1].lsb |= date >> 15; in vivid_rds_generate() 114 data[2].lsb = (date << 1) & 0xfe; in vivid_rds_generate() 116 data[2].msb = (date >> 7) & 0xff; in vivid_rds_generate()
|
/linux-4.4.14/arch/x86/kernel/cpu/microcode/ |
D | intel.c | 396 unsigned int sig, pf, rev, total_size, data_size, date; in show_saved_mc() local 425 date = mc_saved_header->date; in show_saved_mc() 429 date & 0xffff, in show_saved_mc() 430 date >> 24, in show_saved_mc() 431 (date >> 16) & 0xff); in show_saved_mc() 576 print_ucode_info(struct ucode_cpu_info *uci, unsigned int date) in print_ucode_info() argument 583 date & 0xffff, in print_ucode_info() 584 date >> 24, in print_ucode_info() 585 (date >> 16) & 0xff); in print_ucode_info() 626 *current_mc_date_p = mc_intel->hdr.date; in print_ucode() [all …]
|
/linux-4.4.14/Documentation/ |
D | SecurityBugs | 28 A disclosure date is negotiated by the security team working with the 30 holds the final say when setting a disclosure date. The timeframe for 32 to a few weeks. As a basic default policy, we expect report date to 33 disclosure date to be on the order of 7 days.
|
D | rtc.txt | 41 clock that keeps the date and time while your computer is turned off. 146 date: RTC-provided date 171 time, returning the result as a Gregorian calendar date and 24 hour
|
D | magic-number.txt | 37 Now it should be up to date with Linux 2.1.112. Because
|
D | cpu-hotplug.txt | 443 echo `date` ":cpu.agent" add cpu >> /tmp/hotplug.txt 446 echo `date` ":cpu.agent" remove cpu >>/tmp/hotplug.txt
|
D | circular-buffers.txt | 221 This will instruct the CPU to make sure the index is up to date before reading
|
D | stable_api_nonsense.txt | 93 date over time.
|
D | HOWTO | 10 If anything in this document becomes out of date, please send in patches 210 self-referential, indexed webpage format. An excellent up-to-date
|
D | cachetlb.txt | 361 page up to date. It is assumed here that the user has no
|
D | applying-patches.txt | 409 sure you have up-to-date backups -- that goes for any experimental kernel but
|
D | kernel-docs.txt | 621 be more up to date than the web version.
|
/linux-4.4.14/tools/testing/selftests/pstore/ |
D | common_tests | 60 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`_${UUID}/ 66 date > $LOG_FILE
|
/linux-4.4.14/include/linux/ |
D | sdb.h | 31 uint32_t date; /* 0x28..0x2b */ member 125 uint32_t date; /* 0x2c-0x2f */ member
|
D | nfs_xdr.h | 1227 struct nfstime4 date; member
|
/linux-4.4.14/fs/ncpfs/ |
D | ncp_fs.h | 65 int ncp_date_dos2unix(__le16 time, __le16 date); 66 void ncp_date_unix2dos(int unix_date, __le16 * time, __le16 * date);
|
D | dir.c | 1197 unsigned short time = le16_to_cpu(t), date = le16_to_cpu(d); in ncp_date_dos2unix() local 1202 month = ((date >> 5) - 1) & 15; in ncp_date_dos2unix() 1203 year = date >> 9; in ncp_date_dos2unix() 1205 86400 * ((date & 31) - 1 + day_n[month] + (year / 4) + in ncp_date_dos2unix() 1214 ncp_date_unix2dos(int unix_date, __le16 *time, __le16 *date) in ncp_date_unix2dos() argument 1236 *date = cpu_to_le16(nl_day - day_n[month - 1] + 1 + (month << 5) + (year << 9)); in ncp_date_unix2dos()
|
/linux-4.4.14/scripts/ |
D | bootgraph.pl | 156 my $date = `date`; 159 print "<text transform=\"translate($xheader,$cyheader)\">Date: $date</text>\n";
|
D | stackusage | 4 now=`date +%s`
|
D | mkcompile_h | 41 TIMESTAMP=`date`
|
D | checkpatch.pl | 654 my $date = POSIX::strftime("%Y%m%d%H%M", 656 $last_mod_date = $date if ($last_mod_date < $date);
|
/linux-4.4.14/tools/testing/selftests/ftrace/ |
D | ftracetest | 95 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`/ 112 date > $LOG_FILE
|
/linux-4.4.14/drivers/staging/gs_fpgaboot/ |
D | gs_fpgaboot.h | 52 char date[MAX_STR]; member
|
D | gs_fpgaboot.c | 130 pr_info("date: %s\n", fimage->date); in gs_print_header() 146 readinfo_bitstream(bitdata, fimage->date, &offset); in gs_read_bitstream()
|
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/ |
D | kvm-test-1-run.sh | 66 echo ' ---' `date`: Starting build 137 echo ' ---' `date`: Starting kernel
|
D | kvm.sh | 49 ds=`date +%Y.%m.%d-%H:%M:%S`
|
/linux-4.4.14/drivers/staging/rtl8188eu/include/ |
D | fw.h | 46 u8 date; member
|
/linux-4.4.14/arch/mips/include/asm/ |
D | m48t37.h | 26 volatile u8 date; member
|
/linux-4.4.14/arch/s390/include/uapi/asm/ |
D | hypfs.h | 41 char date[8]; /* MM/DD/YY in EBCDIC */ member
|
/linux-4.4.14/Documentation/power/ |
D | s2ram.txt | 78 correct date/time! It is therefore advisable to use a program like ntp-date 79 or rdate to reset the correct date/time from an external time source when
|
/linux-4.4.14/arch/s390/boot/ |
D | Makefile | 6 tr -c '[0-9A-Za-z]' '_'`__`date | \
|
/linux-4.4.14/ |
D | Kbuild | 42 # We use internal kbuild rules to avoid the "is up to date" message from make 77 # We use internal kbuild rules to avoid the "is up to date" message from make
|
D | README | 115 Compiling and running the 4.x kernels requires up-to-date
|
D | Makefile | 769 KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
|
D | COPYING | 112 stating that you changed the files and the date of any change.
|
/linux-4.4.14/drivers/gpu/drm/tdfx/ |
D | tdfx_drv.c | 63 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/ |
D | drm_platform.c | 62 driver->date, dev->primary->index); in drm_get_platform_dev()
|
D | drm_ioctl.c | 497 err = drm_copy_field(version->date, &version->date_len, in drm_version() 498 dev->driver->date); in drm_version()
|
D | drm_pci.c | 306 driver->date, pci_name(pdev), dev->primary->index); in drm_get_pci_dev()
|
D | drm_ioc32.c | 82 u32 date; /**< User-space buffer to hold date */ member 104 || __put_user((void __user *)(unsigned long)v32.date, in compat_drm_version() 105 &version->date) in compat_drm_version()
|
/linux-4.4.14/drivers/gpu/drm/i810/ |
D | i810_drv.c | 73 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/savage/ |
D | savage_drv.c | 66 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/nfc/s3fwrn5/ |
D | firmware.h | 78 char date[13]; member
|
D | firmware.c | 310 memcpy(fw->date, fw->fw->data + 0x00, 12); in s3fwrn5_fw_request_firmware() 311 fw->date[12] = '\0'; in s3fwrn5_fw_request_firmware()
|
/linux-4.4.14/arch/x86/include/asm/ |
D | microcode_intel.h | 9 unsigned int date; member
|
/linux-4.4.14/drivers/gpu/drm/r128/ |
D | r128_drv.c | 78 .date = DRIVER_DATE,
|
/linux-4.4.14/arch/mips/lasat/image/ |
D | Makefile | 22 -D TIMESTAMP=$(shell date +%s)
|
/linux-4.4.14/drivers/gpu/drm/virtio/ |
D | virtgpu_drm_bus.c | 88 driver->date, dev->primary->index); in drm_virtio_init()
|
D | virtgpu_drv.c | 158 .date = DRIVER_DATE,
|
/linux-4.4.14/net/wireless/ |
D | db.txt | 8 # up-to-date on your behalf.
|
/linux-4.4.14/tools/usb/ |
D | hcd-tests.sh | 89 echo $(date)
|
/linux-4.4.14/drivers/gpu/drm/mga/ |
D | mga_drv.c | 82 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/infiniband/hw/qib/ |
D | qib_qsfp.h | 166 u8 date[QSFP_DATE_LEN]; member
|
D | qib_qsfp.c | 400 ret = qsfp_read(ppd, QSFP_DATE_OFFS, &cp->date, QSFP_DATE_LEN); in qib_refresh_qsfp_cache() 404 cks += cp->date[idx]; in qib_refresh_qsfp_cache() 539 QSFP_DATE_LEN, cd.date); in qib_qsfp_dump()
|
/linux-4.4.14/drivers/gpu/drm/via/ |
D | via_drv.c | 97 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/udl/ |
D | udl_drv.c | 61 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/sis/ |
D | sis_drv.c | 118 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/staging/gdm72xx/ |
D | usb_boot.c | 49 char date[32]; member 63 char date[32]; member
|
/linux-4.4.14/drivers/net/wimax/i2400m/ |
D | fw.c | 1194 module_id, module_vendor, date, size; in i2400m_fw_hdr_check() local 1203 date = le32_to_cpu(bcf_hdr->date); in i2400m_fw_hdr_check() 1210 major_version, minor_version, header_len, size, date); in i2400m_fw_hdr_check() 1236 if (date < 0x20080300) in i2400m_fw_hdr_check() 1239 i2400m->fw_name, index, offset, date); in i2400m_fw_hdr_check()
|
/linux-4.4.14/drivers/gpu/drm/mgag200/ |
D | mgag200_drv.c | 99 .date = DRIVER_DATE,
|
/linux-4.4.14/Documentation/sound/oss/ |
D | oss-parameters.txt | 7 This document may not be entirely up to date and comprehensive. The command
|
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/ |
D | EB2410ITX.txt | 42 information or up-to-date versions of linux-mtd.
|
/linux-4.4.14/Documentation/kbuild/ |
D | kbuild.txt | 216 Setting this to a date string overrides the timestamp used in the 218 be a string that can be passed to date -d. The default value 219 is the output of the date command at one point during build.
|
/linux-4.4.14/drivers/gpu/drm/fsl-dcu/ |
D | fsl_dcu_drm_drv.c | 216 .date = "20150213", 374 driver->date, drm->primary->index); in fsl_dcu_drm_probe()
|
/linux-4.4.14/drivers/gpu/drm/cirrus/ |
D | cirrus_drv.c | 140 .date = DRIVER_DATE,
|
/linux-4.4.14/sound/firewire/bebob/ |
D | bebob_maudio.c | 98 u64 date; in snd_bebob_maudio_load_firmware() local 107 &date, sizeof(u64)); in snd_bebob_maudio_load_firmware() 114 if (date < 0x3230303730343031LL) { in snd_bebob_maudio_load_firmware()
|
/linux-4.4.14/drivers/ata/ |
D | ahci.c | 1078 int year, month, date; in ahci_sb600_enable_64bit() local 1089 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_sb600_enable_64bit() 1090 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_sb600_enable_64bit() 1213 int year, month, date; in ahci_broken_suspend() local 1219 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_broken_suspend() 1220 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_broken_suspend()
|
/linux-4.4.14/include/uapi/linux/ |
D | iso_fs.h | 150 char date [ISODCL (19, 25)]; /* 7 by 711 */ member
|
D | msdos_fs.h | 183 __le16 time,date,start;/* time, date and first cluster */ member
|
/linux-4.4.14/Documentation/hwmon/ |
D | nct6683 | 32 build date 04/03/13 do not match the register locations in the Nuvoton
|
D | submitting-patches | 37 date. 39 * Make sure the information in Kconfig is up to date.
|
/linux-4.4.14/drivers/gpu/drm/ast/ |
D | ast_drv.c | 207 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/bochs/ |
D | bochs_drv.c | 89 .date = "20130925",
|
/linux-4.4.14/Documentation/input/ |
D | yealink.txt | 145 date +"%m.%e.%k:%M" | sed 's/^0/ /' > ./line1 147 Will update the LCD with the current date & time.
|
D | atarikbd.txt | 487 and not alter that particular field of the date or time. This permits setting
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | alsa-parameters.txt | 7 This document may not be entirely up to date and comprehensive. The command
|
D | Procfile.txt | 24 Shows the version string and compile date.
|
/linux-4.4.14/Documentation/video4linux/ |
D | README.ir | 11 from http://bytesex.org/snapshot/input-<date>.tar.gz
|
/linux-4.4.14/include/uapi/linux/wimax/ |
D | i2400m.h | 140 __le32 date; /* BCD YYYMMDD */ member
|
/linux-4.4.14/drivers/gpu/drm/vgem/ |
D | vgem_drv.c | 261 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/qxl/ |
D | qxl_drv.c | 267 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/media/usb/dvb-usb/ |
D | Kconfig | 42 For an up-to-date list of devices supported by this driver, have a look 63 For an up-to-date list of devices supported by this driver, have a look 92 For an up-to-date list of devices supported by this driver, have a look
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | radeon_drv.c | 368 .date = DRIVER_DATE, 613 .date = DRIVER_DATE,
|
/linux-4.4.14/Documentation/filesystems/ |
D | vfat.txt | 241 unsigned char cdate[2]; // Creation date 242 unsigned char adate[2]; // Last access date 245 unsigned char date[2]; // date stamp
|
D | romfs.txt | 152 romfs has also a mailing list, and to date, it hasn't received any
|
D | affs.txt | 185 this fs. For a most up-to-date list of bugs please consult
|
D | vfs.txt | 733 they believe the cache may be out of date with storage) by 764 block is up to date then the read can complete without needing the IO 765 to bring the whole page up to date. 1165 (Note some of these resources are not up-to-date with the latest kernel
|
D | Locking | 2 It is (believed to be) up-to-date. *Please*, if you change anything in
|
/linux-4.4.14/drivers/gpu/drm/vc4/ |
D | vc4_drv.c | 118 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/sti/ |
D | sti_drv.c | 219 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/staging/slicoss/ |
D | slichw.h | 670 u8 date[2]; member 678 u8 date[3]; member
|
/linux-4.4.14/Documentation/networking/ |
D | gen_stats.txt | 107 up-to-date info.
|
D | regulatory.txt | 7 More up to date information can be obtained at the project's web page: 205 The file net/wireless/db.txt should be kept up-to-date with the db.txt
|
D | dccp.txt | 43 For more up-to-date versions of the DCCP implementation, please consider using
|
D | LICENSE.qlcnic | 106 stating that you changed the files and the date of any change.
|
D | phy.txt | 203 Fills the phydev structure with up-to-date information about the current
|
D | LICENSE.qlge | 106 stating that you changed the files and the date of any change.
|
/linux-4.4.14/drivers/gpu/drm/rcar-du/ |
D | rcar_du_drv.c | 297 .date = "20130110",
|
/linux-4.4.14/Documentation/vm/ |
D | pagemap.txt | 128 is up-to-date one has to read /sys/kernel/mm/page_idle/bitmap first. 132 3. UPTODATE page has up-to-date data
|
/linux-4.4.14/tools/perf/ |
D | builtin-kvm.c | 561 char date[64]; in show_timeofday() local 567 strftime(date, sizeof(date), "%H:%M:%S", <ime); in show_timeofday() 568 pr_info("%s.%06ld", date, tv.tv_usec); in show_timeofday()
|
/linux-4.4.14/Documentation/mmc/ |
D | mmc-dev-attrs.txt | 19 date Manufacturing Date (from CID Register)
|
/linux-4.4.14/drivers/gpu/drm/shmobile/ |
D | shmob_drm_drv.c | 292 .date = "20120424",
|
/linux-4.4.14/Documentation/scsi/ |
D | scsi-parameters.txt | 7 This document may not be entirely up to date and comprehensive. The command
|
D | osd.txt | 184 More up-to-date information can be found on:
|
D | arcmsr_spec.txt | 100 ** byte 4 : date (1..31)
|
D | LICENSE.qla4xxx | 107 stating that you changed the files and the date of any change.
|
D | LICENSE.qla2xxx | 108 stating that you changed the files and the date of any change.
|
D | ChangeLog.megaraid_sas | 274 2. Add the fix for 64bit sense date errors.
|
D | ChangeLog.megaraid | 178 This patch pencils in a date of Feb 06 for this, and performs some
|
D | BusLogic.txt | 202 the date of this document. It is recommended that anyone purchasing a BusLogic
|
/linux-4.4.14/sound/soc/intel/baytrail/ |
D | sst-baytrail-ipc.c | 134 u8 date[16]; member 760 init.build_info.date, init.build_info.time); in sst_byt_dsp_init()
|
/linux-4.4.14/drivers/memstick/core/ |
D | mspro_block.c | 124 unsigned short date; member 464 (x_spfile->date >> 9) + 1980, in mspro_block_attr_show_specfile() 465 (x_spfile->date >> 5) & 0xf, in mspro_block_attr_show_specfile() 466 x_spfile->date & 0x1f); in mspro_block_attr_show_specfile()
|
/linux-4.4.14/drivers/gpu/drm/armada/ |
D | armada_drv.c | 216 .date = "20120730",
|
/linux-4.4.14/fs/cifs/ |
D | netmisc.c | 966 u16 date = le16_to_cpu(le_date); in cnvrtDosUnixTm() local 969 SMB_DATE *sd = (SMB_DATE *)&date; in cnvrtDosUnixTm() 971 cifs_dbg(FYI, "date %d time %d\n", date, time); in cnvrtDosUnixTm()
|
/linux-4.4.14/drivers/isdn/act2000/ |
D | capi.h | 73 __u8 date[20]; /* date fields */ member
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_csr.c | 83 uint32_t date; member
|
D | i915_drv.c | 1727 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/fmc/ |
D | fmc-sdb.c | 226 __be32_to_cpu(r->synthesis.date), in __fmc_show_sdb_tree()
|
/linux-4.4.14/sound/soc/intel/atom/ |
D | sst-mfld-dsp.h | 237 unsigned char date[16]; /* Firmware build date */ member
|
/linux-4.4.14/Documentation/fmc/ |
D | FMC-and-SDB.txt | 18 The most up to date version of code and documentation is always
|
/linux-4.4.14/block/partitions/ |
D | acorn.c | 70 __le32 date; member
|
/linux-4.4.14/Documentation/i2c/ |
D | functionality | 14 For the most up-to-date list of functionality constants, please check
|
/linux-4.4.14/tools/perf/Documentation/ |
D | Makefile | 251 date >$@
|
/linux-4.4.14/drivers/gpu/drm/imx/ |
D | imx-drm-core.c | 498 .date = "20120507",
|
/linux-4.4.14/include/uapi/drm/ |
D | drm.h | 135 char __user *date; /**< User-space buffer to hold date */ member
|
/linux-4.4.14/Documentation/ia64/ |
D | efirtc.txt | 34 the reference date is different. Year is the using the full 4-digit format.
|
/linux-4.4.14/drivers/gpu/drm/rockchip/ |
D | rockchip_drm_drv.c | 301 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/tegra/ |
D | drm.c | 958 .date = DRIVER_DATE, 1003 driver->date, drm->primary->index); in host1x_drm_probe()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_drm.c | 968 .date = GIT_REVISION, 970 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/gpu/drm/gma500/ |
D | psb_drv.c | 521 .date = DRIVER_DATE,
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | firmware.c | 99 u32 date; /* BCD yyyymmdd */ member 453 hfi1_cdbg(FIRMWARE, " date 0x%x", css->date); in obtain_one_firmware()
|
/linux-4.4.14/scripts/package/ |
D | builddeb | 255 -- $maintainer $(date -R)
|
/linux-4.4.14/arch/m68k/q40/ |
D | README | 5 some up to date information. Booter and other tools will be also
|
/linux-4.4.14/drivers/gpu/drm/exynos/ |
D | exynos_drm_drv.c | 473 .date = DRIVER_DATE,
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | Insmod-options | 3 module, among them a complete and up-to-date list of insmod options.
|
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/ |
D | rtl8xxxu.h | 391 u8 date; /* Release time Date field */ member
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_drv.c | 529 .date = DRIVER_DATE,
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | network_protocol.txt | 170 page to be marked as not up-to-date.
|
/linux-4.4.14/drivers/gpu/drm/atmel-hlcdc/ |
D | atmel_hlcdc_dc.c | 722 .date = "20141504",
|
/linux-4.4.14/Documentation/usb/ |
D | CREDITS | 51 Systems recognized the importance of an up-to-date open
|
D | usb-serial.txt | 430 See http://www.uuhaus.de/linux/palmconnect.html for up-to-date
|
/linux-4.4.14/include/drm/ |
D | drmP.h | 638 char *date; member
|
/linux-4.4.14/drivers/gpu/drm/tilcdc/ |
D | tilcdc_drv.c | 581 .date = "20121205",
|
/linux-4.4.14/fs/jffs2/ |
D | README.Locking | 6 JFFS2. It is not expected to remain perfectly up to date, but ought to
|
/linux-4.4.14/drivers/net/wireless/ |
D | Kconfig | 213 only wireless RNDIS chip known to date.
|
/linux-4.4.14/drivers/gpu/drm/omapdrm/ |
D | omap_drv.c | 863 .date = DRIVER_DATE,
|
/linux-4.4.14/sound/isa/gus/ |
D | interwave.c | 369 /* 026 */ unsigned char date[10]; member
|
/linux-4.4.14/Documentation/timers/ |
D | timekeeping.txt | 25 tells you where you are in time. For example issuing the command 'date' on
|
D | highres.txt | 230 in the idle period to make sure that jiffies are up to date and the interrupt
|
/linux-4.4.14/Documentation/powerpc/ |
D | qe_firmware.txt | 181 qe_upload_firmware() for up-to-date implementation information.
|
/linux-4.4.14/drivers/mmc/core/ |
D | sd.c | 659 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
|
D | mmc.c | 715 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
|
/linux-4.4.14/drivers/net/ethernet/neterion/vxge/ |
D | vxge-config.h | 217 char date[VXGE_HW_FW_STRLEN]; member
|
D | vxge-config.c | 828 snprintf(fw_date->date, VXGE_HW_FW_STRLEN, "%2.2d/%2.2d/%4.4d", in __vxge_hw_vpath_fw_ver_get() 848 snprintf(flash_date->date, VXGE_HW_FW_STRLEN, "%2.2d/%2.2d/%4.4d", in __vxge_hw_vpath_fw_ver_get()
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | object.txt | 194 coherency data indicated what's on disk is out of date. In this state,
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 448 out-of-date information, but with an up-to-date generation number.
|
/linux-4.4.14/Documentation/development-process/ |
D | 3.Early-stage | 131 the place to start. That file tends to not always be up to date, though,
|
/linux-4.4.14/drivers/gpu/drm/msm/ |
D | msm_drv.c | 1005 .date = "20130625",
|
/linux-4.4.14/tools/testing/ktest/ |
D | ktest.pl | 1591 my $date = sprintf "%04d%02d%02d%02d%02d%02d", 1599 my $dir = "$machine-$test_type-$type-$result-$date";
|
/linux-4.4.14/Documentation/isdn/ |
D | README.sc | 19 remove yourself from this list at a later date, send another message to
|
/linux-4.4.14/Documentation/device-mapper/ |
D | cache.txt | 33 may be out of date or kept in sync with the copy on the cache device
|
/linux-4.4.14/fs/nfs/ |
D | super.c | 766 impl_id->date.seconds, impl_id->date.nseconds); in show_implementation_id()
|
/linux-4.4.14/fs/befs/ |
D | ChangeLog | 225 * Fixed date format in this file. Was I smoking crack?
|
/linux-4.4.14/fs/isofs/ |
D | inode.c | 1370 inode->i_ctime.tv_sec = iso_date(de->date, high_sierra); in isofs_read_inode()
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_drv.c | 1518 .date = VMWGFX_DRIVER_DATE,
|
/linux-4.4.14/drivers/tty/ |
D | cyclades.c | 110 char date[32]; member 3447 cyc_isfwstr(h->date, sizeof(h->date))) { in __cyz_load_fw()
|
/linux-4.4.14/arch/x86/math-emu/ |
D | README | 220 These figures are now somewhat out-of-date. The emulator has become
|
/linux-4.4.14/Documentation/blockdev/ |
D | paride.txt | 413 web pages (although they are not always up to date) at
|
D | README.DAC960 | 95 PCI RAID Controllers as of the date of this document. It is recommended that
|
/linux-4.4.14/drivers/scsi/aacraid/ |
D | aacraid.h | 211 __le32 date; /* member
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | copying | 96 stating that you changed the files and the date of any change.
|
/linux-4.4.14/Documentation/DocBook/ |
D | kernel-api.xml.db | 546 API-dmi-get-date
|
/linux-4.4.14/tools/usb/usbip/ |
D | COPYING | 96 stating that you changed the files and the date of any change.
|
/linux-4.4.14/arch/arm/tools/ |
D | mach-types | 5 # Up to date versions of this file can be obtained from:
|
/linux-4.4.14/Documentation/cdrom/ |
D | ide-cd | 48 Documentation/ide/ide.txt for up-to-date information on the ide
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | license | 99 that you changed the files and the date of any change.
|
/linux-4.4.14/Documentation/RCU/ |
D | RTFP.txt | 38 a description of Argus that noted that use of out-of-date values can 347 are necessary if the reported total is to be up to date. They 349 out of date." Relies on semantics -- approximate numerical
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/ |
D | wifi.h | 233 u8 date; member
|
/linux-4.4.14/drivers/net/wireless/ipw2x00/ |
D | ipw2200.c | 10458 char date[32]; in ipw_ethtool_get_drvinfo() local 10466 len = sizeof(date); in ipw_ethtool_get_drvinfo() 10467 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len); in ipw_ethtool_get_drvinfo() 10470 vers, date); in ipw_ethtool_get_drvinfo()
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_hw4.h | 3912 uint8_t date[12]; member
|
/linux-4.4.14/Documentation/sysctl/ |
D | kernel.txt | 529 date behind it indicates the time the kernel was built.
|