/linux-4.1.27/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 | 194 u8 date[7]; in rx8025_get_time() local 197 err = rx8025_read_regs(rx8025->client, RX8025_REG_SEC, 7, date); in rx8025_get_time() 203 date[0], date[1], date[2], date[3], date[4], in rx8025_get_time() 204 date[5], date[6]); in rx8025_get_time() 206 dt->tm_sec = bcd2bin(date[RX8025_REG_SEC] & 0x7f); in rx8025_get_time() 207 dt->tm_min = bcd2bin(date[RX8025_REG_MIN] & 0x7f); in rx8025_get_time() 209 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f); in rx8025_get_time() 211 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12 in rx8025_get_time() 212 + (date[RX8025_REG_HOUR] & 0x20 ? 12 : 0); in rx8025_get_time() 214 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-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 | 117 unsigned int time, date; in at91_rtc_decodetime() local 122 date = at91_rtc_read(calreg); in at91_rtc_decodetime() 124 (date != at91_rtc_read(calreg))); in at91_rtc_decodetime() 135 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */ in at91_rtc_decodetime() 136 tm->tm_year += bcd2bin((date & AT91_RTC_YEAR) >> 8); /* year */ in at91_rtc_decodetime() 138 tm->tm_wday = bcd2bin((date & AT91_RTC_DAY) >> 21) - 1; /* day of the week [0-6], Sunday=0 */ in at91_rtc_decodetime() 139 tm->tm_mon = bcd2bin((date & AT91_RTC_MONTH) >> 16) - 1; in at91_rtc_decodetime() 140 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.1.27/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.1.27/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 | 1134 __le16 date, time; in fat_alloc_new_dir() local 1149 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in fat_alloc_new_dir() 1158 de[0].date = de[1].date = date; in fat_alloc_new_dir() 1163 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 | 500 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0); in fat_fill_inode() 781 &raw_entry->date, NULL); in __fat_write_inode()
|
/linux-4.1.27/arch/x86/kernel/cpu/microcode/ |
D | intel_early.c | 397 unsigned int sig, pf, rev, total_size, data_size, date; in show_saved_mc() local 426 date = mc_saved_header->date; in show_saved_mc() 430 date & 0xffff, in show_saved_mc() 431 date >> 24, in show_saved_mc() 432 (date >> 16) & 0xff); in show_saved_mc() 554 print_ucode_info(struct ucode_cpu_info *uci, unsigned int date) in print_ucode_info() argument 561 date & 0xffff, in print_ucode_info() 562 date >> 24, in print_ucode_info() 563 (date >> 16) & 0xff); in print_ucode_info() 604 *current_mc_date_p = mc_intel->hdr.date; in print_ucode() [all …]
|
D | intel.c | 174 mc_intel->hdr.date & 0xffff, in apply_microcode_intel() 175 mc_intel->hdr.date >> 24, in apply_microcode_intel() 176 (mc_intel->hdr.date >> 16) & 0xff); in apply_microcode_intel()
|
/linux-4.1.27/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.1.27/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.
|
D | DMA-API-HOWTO.txt | 658 properly in order for the CPU and device to see the most up-to-date and
|
/linux-4.1.27/include/linux/ |
D | sdb.h | 31 uint32_t date; /* 0x28..0x2b */ member 125 uint32_t date; /* 0x2c-0x2f */ member
|
D | nfs_xdr.h | 1169 struct nfstime4 date; member
|
/linux-4.1.27/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.1.27/scripts/ |
D | bootgraph.pl | 156 my $date = `date`; 159 print "<text transform=\"translate($xheader,$cyheader)\">Date: $date</text>\n";
|
D | mkcompile_h | 41 TIMESTAMP=`date`
|
D | checkpatch.pl | 640 my $date = POSIX::strftime("%Y%m%d%H%M", 642 $last_mod_date = $date if ($last_mod_date < $date);
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/ |
D | Kbuild | 41 # We use internal kbuild rules to avoid the "is up to date" message from make 58 # We use internal kbuild rules to avoid the "is up to date" message from make
|
D | Makefile | 773 KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
|
D | README | 115 Compiling and running the 4.x kernels requires up-to-date
|
D | COPYING | 112 stating that you changed the files and the date of any change.
|
/linux-4.1.27/drivers/staging/rtl8188eu/include/ |
D | fw.h | 46 u8 date; member
|
/linux-4.1.27/arch/s390/include/uapi/asm/ |
D | hypfs.h | 41 char date[8]; /* MM/DD/YY in EBCDIC */ member
|
/linux-4.1.27/arch/mips/include/asm/ |
D | m48t37.h | 26 volatile u8 date; member
|
/linux-4.1.27/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.1.27/drivers/infiniband/hw/qib/ |
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() 541 QSFP_LOT_LEN, cd.date); in qib_qsfp_dump()
|
D | qib_qsfp.h | 166 u8 date[QSFP_DATE_LEN]; member
|
/linux-4.1.27/arch/s390/boot/ |
D | Makefile | 6 tr -c '[0-9A-Za-z]' '_'`__`date | \
|
/linux-4.1.27/drivers/gpu/drm/tdfx/ |
D | tdfx_drv.c | 63 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_platform.c | 62 driver->date, dev->primary->index); in drm_get_platform_dev()
|
D | drm_ioctl.c | 479 err = drm_copy_field(version->date, &version->date_len, in drm_version() 480 dev->driver->date); in drm_version()
|
D | drm_pci.c | 303 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.1.27/drivers/gpu/drm/savage/ |
D | savage_drv.c | 66 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/gpu/drm/i810/ |
D | i810_drv.c | 73 .date = DRIVER_DATE,
|
/linux-4.1.27/arch/mips/lasat/image/ |
D | Makefile | 22 -D TIMESTAMP=$(shell date +%s)
|
/linux-4.1.27/drivers/gpu/drm/r128/ |
D | r128_drv.c | 78 .date = DRIVER_DATE,
|
/linux-4.1.27/net/wireless/ |
D | db.txt | 8 # up-to-date on your behalf.
|
/linux-4.1.27/drivers/gpu/drm/mga/ |
D | mga_drv.c | 82 .date = DRIVER_DATE,
|
/linux-4.1.27/arch/x86/include/asm/ |
D | microcode_intel.h | 9 unsigned int date; member
|
/linux-4.1.27/tools/usb/ |
D | hcd-tests.sh | 89 echo $(date)
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723com/ |
D | fw_common.h | 61 u8 date; member
|
/linux-4.1.27/drivers/gpu/drm/via/ |
D | via_drv.c | 97 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/gpu/drm/sis/ |
D | sis_drv.c | 118 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/gpu/drm/udl/ |
D | udl_drv.c | 61 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/staging/gdm72xx/ |
D | usb_boot.c | 49 char date[32]; member 63 char date[32]; member
|
/linux-4.1.27/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.1.27/drivers/gpu/drm/mgag200/ |
D | mgag200_drv.c | 98 .date = DRIVER_DATE,
|
/linux-4.1.27/Documentation/kbuild/ |
D | kbuild.txt | 211 Setting this to a date string overrides the timestamp used in the 213 be a string that can be passed to date -d. The default value 214 is the output of the date command at one point during build.
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192de/ |
D | fw.h | 122 u8 date; member
|
/linux-4.1.27/Documentation/sound/oss/ |
D | oss-parameters.txt | 7 This document may not be entirely up to date and comprehensive. The command
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | EB2410ITX.txt | 42 information or up-to-date versions of linux-mtd.
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192c/ |
D | fw_common.h | 80 u8 date; member
|
/linux-4.1.27/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.1.27/drivers/ata/ |
D | ahci.c | 1082 int year, month, date; in ahci_sb600_enable_64bit() local 1093 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_sb600_enable_64bit() 1094 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_sb600_enable_64bit() 1217 int year, month, date; in ahci_broken_suspend() local 1223 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_broken_suspend() 1224 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_broken_suspend()
|
/linux-4.1.27/drivers/gpu/drm/cirrus/ |
D | cirrus_drv.c | 140 .date = DRIVER_DATE,
|
/linux-4.1.27/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.1.27/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.1.27/drivers/gpu/drm/bochs/ |
D | bochs_drv.c | 89 .date = "20130925",
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192ee/ |
D | fw.h | 100 u8 date; member
|
/linux-4.1.27/drivers/gpu/drm/ast/ |
D | ast_drv.c | 207 .date = DRIVER_DATE,
|
/linux-4.1.27/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.1.27/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.1.27/include/uapi/linux/wimax/ |
D | i2400m.h | 140 __le32 date; /* BCD YYYMMDD */ member
|
/linux-4.1.27/Documentation/video4linux/ |
D | README.ir | 11 from http://bytesex.org/snapshot/input-<date>.tar.gz
|
D | v4l2-framework.txt | 571 later date. It differs between i2c drivers and as such can be confusing.
|
/linux-4.1.27/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.1.27/drivers/gpu/drm/radeon/ |
D | radeon_drv.c | 367 .date = DRIVER_DATE, 612 .date = DRIVER_DATE,
|
/linux-4.1.27/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 | affs.txt | 185 this fs. For a most up-to-date list of bugs please consult
|
D | romfs.txt | 152 romfs has also a mailing list, and to date, it hasn't received any
|
D | vfs.txt | 731 they believe the cache may be out of date with storage) by 762 block is up to date then the read can complete without needing the IO 763 to bring the whole page up to date. 1158 (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.1.27/tools/perf/ |
D | builtin-kvm.c | 562 char date[64]; in show_timeofday() local 568 strftime(date, sizeof(date), "%H:%M:%S", <ime); in show_timeofday() 569 pr_info("%s.%06ld", date, tv.tv_usec); in show_timeofday()
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_drv.c | 266 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/staging/slicoss/ |
D | slichw.h | 663 u8 date[2]; member 671 u8 date[3]; member
|
/linux-4.1.27/drivers/gpu/drm/rcar-du/ |
D | rcar_du_drv.c | 282 .date = "20130110",
|
/linux-4.1.27/drivers/gpu/drm/sti/ |
D | sti_drm_drv.c | 220 .date = DRIVER_DATE,
|
/linux-4.1.27/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.qlge | 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.qlcnic | 106 stating that you changed the files and the date of any change.
|
D | filter.txt | 572 eBPF is an ISA, BPF extensions date back to classic BPF's 'overloading'
|
/linux-4.1.27/Documentation/mmc/ |
D | mmc-dev-attrs.txt | 19 date Manufacturing Date (from CID Register)
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8188ee/ |
D | fw.h | 142 u8 date; member
|
/linux-4.1.27/drivers/gpu/drm/shmobile/ |
D | shmob_drm_drv.c | 292 .date = "20120424",
|
/linux-4.1.27/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 | 178 This patch pencils in a date of Feb 06 for this, and performs some
|
D | ChangeLog.megaraid_sas | 274 2. Add the fix for 64bit sense date errors.
|
D | BusLogic.txt | 202 the date of this document. It is recommended that anyone purchasing a BusLogic
|
/linux-4.1.27/drivers/gpu/drm/vgem/ |
D | vgem_drv.c | 314 .date = DRIVER_DATE,
|
/linux-4.1.27/sound/soc/intel/baytrail/ |
D | sst-baytrail-ipc.c | 134 u8 date[16]; member 747 init.build_info.date, init.build_info.time); in sst_byt_dsp_init()
|
/linux-4.1.27/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.1.27/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.1.27/drivers/net/wireless/rtlwifi/rtl8821ae/ |
D | fw.h | 148 u8 date; member
|
/linux-4.1.27/sound/soc/intel/atom/ |
D | sst-mfld-dsp.h | 237 unsigned char date[16]; /* Firmware build date */ member
|
/linux-4.1.27/drivers/isdn/act2000/ |
D | capi.h | 73 __u8 date[20]; /* date fields */ member
|
/linux-4.1.27/drivers/fmc/ |
D | fmc-sdb.c | 226 __be32_to_cpu(r->synthesis.date), in __fmc_show_sdb_tree()
|
/linux-4.1.27/Documentation/fmc/ |
D | FMC-and-SDB.txt | 18 The most up to date version of code and documentation is always
|
/linux-4.1.27/block/partitions/ |
D | acorn.c | 70 __le32 date; member
|
/linux-4.1.27/Documentation/i2c/ |
D | functionality | 14 For the most up-to-date list of functionality constants, please check
|
/linux-4.1.27/drivers/gpu/drm/rockchip/ |
D | rockchip_drm_drv.c | 298 .date = DRIVER_DATE,
|
/linux-4.1.27/include/uapi/drm/ |
D | drm.h | 135 char __user *date; /**< User-space buffer to hold date */ member
|
/linux-4.1.27/drivers/gpu/drm/armada/ |
D | armada_drv.c | 333 .date = "20120730",
|
/linux-4.1.27/tools/perf/Documentation/ |
D | Makefile | 251 date >$@
|
/linux-4.1.27/Documentation/ia64/ |
D | efirtc.txt | 34 the reference date is different. Year is the using the full 4-digit format.
|
/linux-4.1.27/scripts/package/ |
D | builddeb | 237 -- $maintainer $(date -R)
|
/linux-4.1.27/drivers/gpu/drm/tegra/ |
D | drm.c | 948 .date = DRIVER_DATE, 993 driver->date, drm->primary->index); in host1x_drm_probe()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_drm.c | 993 .date = GIT_REVISION, 995 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_drv.c | 318 .date = DRIVER_DATE,
|
/linux-4.1.27/drivers/gpu/drm/imx/ |
D | imx-drm-core.c | 498 .date = "20120507",
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
D | psb_drv.c | 521 .date = DRIVER_DATE,
|
/linux-4.1.27/arch/m68k/q40/ |
D | README | 5 some up to date information. Booter and other tools will be also
|
/linux-4.1.27/Documentation/vm/ |
D | pagemap.txt | 115 3. UPTODATE page has up-to-date data
|
/linux-4.1.27/drivers/gpu/drm/atmel-hlcdc/ |
D | atmel_hlcdc_dc.c | 506 .date = "20141504",
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Insmod-options | 3 module, among them a complete and up-to-date list of insmod options.
|
/linux-4.1.27/drivers/gpu/drm/tilcdc/ |
D | tilcdc_drv.c | 564 .date = "20121205",
|
/linux-4.1.27/Documentation/filesystems/pohmelfs/ |
D | network_protocol.txt | 170 page to be marked as not up-to-date.
|
/linux-4.1.27/drivers/gpu/drm/omapdrm/ |
D | omap_drv.c | 673 .date = DRIVER_DATE,
|
/linux-4.1.27/include/drm/ |
D | drmP.h | 620 char *date; member
|
/linux-4.1.27/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.1.27/fs/jffs2/ |
D | README.Locking | 6 JFFS2. It is not expected to remain perfectly up to date, but ought to
|
/linux-4.1.27/drivers/net/wireless/ |
D | Kconfig | 213 only wireless RNDIS chip known to date.
|
/linux-4.1.27/drivers/staging/i2o/ |
D | i2o_proc.c | 877 u8 date[8]; in i2o_seq_show_drivers_stored() member 937 seq_printf(seq, "%-9s", chtostr(tmp, dst->date, 8)); in i2o_seq_show_drivers_stored()
|
/linux-4.1.27/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.1.27/Documentation/powerpc/ |
D | qe_firmware.txt | 181 qe_upload_firmware() for up-to-date implementation information.
|
/linux-4.1.27/sound/isa/gus/ |
D | interwave.c | 369 /* 026 */ unsigned char date[10]; member
|
/linux-4.1.27/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()
|
D | vxge-main.c | 4676 ll_config->device_hw_info.fw_date.date); in vxge_probe()
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | object.txt | 194 coherency data indicated what's on disk is out of date. In this state,
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | msm_drv.c | 927 .date = "20130625",
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | mmu.txt | 442 out-of-date information, but with an up-to-date generation number.
|
/linux-4.1.27/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.1.27/drivers/mmc/core/ |
D | sd.c | 694 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
|
D | mmc.c | 711 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
|
/linux-4.1.27/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.1.27/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.1.27/Documentation/isdn/ |
D | README.sc | 19 remove yourself from this list at a later date, send another message to
|
/linux-4.1.27/fs/nfs/ |
D | super.c | 763 impl_id->date.seconds, impl_id->date.nseconds); in show_implementation_id()
|
D | nfs4xdr.c | 5558 p = xdr_decode_hyper(p, &res->impl_id->date.seconds); in decode_exchange_id() 5559 res->impl_id->date.nseconds = be32_to_cpup(p); in decode_exchange_id()
|
D | nfs4proc.c | 6953 clp->cl_implid->date.seconds, in _nfs4_proc_exchange_id() 6954 clp->cl_implid->date.nseconds); in _nfs4_proc_exchange_id()
|
/linux-4.1.27/fs/isofs/ |
D | inode.c | 1370 inode->i_ctime.tv_sec = iso_date(de->date, high_sierra); in isofs_read_inode()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_drv.c | 1608 .date = DRIVER_DATE,
|
/linux-4.1.27/fs/befs/ |
D | ChangeLog | 225 * Fixed date format in this file. Was I smoking crack?
|
/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_drv.c | 1427 .date = VMWGFX_DRIVER_DATE,
|
/linux-4.1.27/drivers/tty/ |
D | cyclades.c | 110 char date[32]; member 3460 cyc_isfwstr(h->date, sizeof(h->date))) { in __cyz_load_fw()
|
/linux-4.1.27/drivers/scsi/aacraid/ |
D | aacraid.h | 211 __le32 date; /* member
|
/linux-4.1.27/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.1.27/arch/x86/math-emu/ |
D | README | 220 These figures are now somewhat out-of-date. The emulator has become
|
/linux-4.1.27/tools/usb/usbip/ |
D | COPYING | 96 stating that you changed the files and the date of any change.
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | license | 99 that you changed the files and the date of any change.
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | copying | 96 stating that you changed the files and the date of any change.
|
/linux-4.1.27/Documentation/cdrom/ |
D | ide-cd | 48 Documentation/ide/ide.txt for up-to-date information on the ide
|
/linux-4.1.27/arch/arm/tools/ |
D | mach-types | 5 # Up to date versions of this file can be obtained from:
|
/linux-4.1.27/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.1.27/Documentation/sysctl/ |
D | kernel.txt | 517 date behind it indicates the time the kernel was built.
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_hw4.h | 3682 uint8_t date[12]; member
|
/linux-4.1.27/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.1.27/net/netfilter/ |
D | Kconfig | 1420 on) or departure time/date (for locally generated packets).
|