/linux-4.1.27/arch/mips/bcm47xx/ |
D | sprom.c | 200 const char *pre = prefix; in bcm47xx_sprom_fill_auto() local 203 ENTRY(0xfffffffe, u16, pre, "boardrev", board_rev, 0, true); in bcm47xx_sprom_fill_auto() 204 ENTRY(0x00000002, u16, pre, "boardflags", boardflags_lo, 0, fb); in bcm47xx_sprom_fill_auto() 205 ENTRY(0xfffffffc, u16, pre, "boardtype", board_type, 0, true); in bcm47xx_sprom_fill_auto() 206 ENTRY(0xfffffffe, u16, pre, "boardnum", board_num, 0, fb); in bcm47xx_sprom_fill_auto() 207 ENTRY(0x00000002, u8, pre, "cc", country_code, 0, fb); in bcm47xx_sprom_fill_auto() 208 ENTRY(0xfffffff8, u8, pre, "regrev", regrev, 0, fb); in bcm47xx_sprom_fill_auto() 210 ENTRY(0xfffffffe, u8, pre, "ledbh0", gpio0, 0xff, fb); in bcm47xx_sprom_fill_auto() 211 ENTRY(0xfffffffe, u8, pre, "ledbh1", gpio1, 0xff, fb); in bcm47xx_sprom_fill_auto() 212 ENTRY(0xfffffffe, u8, pre, "ledbh2", gpio2, 0xff, fb); in bcm47xx_sprom_fill_auto() [all …]
|
/linux-4.1.27/sound/pci/ctxfi/ |
D | ctimap.c | 25 struct list_head *pos, *pre, *head; in input_mapper_add() local 46 pre = pos->prev; in input_mapper_add() 47 if (pre == head) in input_mapper_add() 48 pre = head->prev; in input_mapper_add() 52 pre = head->prev; in input_mapper_add() 57 pre_ent = list_entry(pre, struct imapper, list); in input_mapper_add() 71 struct list_head *next, *pre, *head; in input_mapper_delete() local 79 pre = (entry->list.prev == head) ? head->prev : entry->list.prev; in input_mapper_delete() 82 if (pre == &entry->list) { in input_mapper_delete() 90 pre_ent = list_entry(pre, struct imapper, list); in input_mapper_delete()
|
D | ctvmem.c | 81 struct list_head *pos, *pre; in put_vm_block() local 109 pre = pos->prev; in put_vm_block() 110 while (pre != &vm->unused) { in put_vm_block() 112 pre_ent = list_entry(pre, struct ct_vm_block, list); in put_vm_block() 119 pos = pre; in put_vm_block() 120 pre = pos->prev; in put_vm_block()
|
/linux-4.1.27/arch/frv/kernel/ |
D | time.c | 73 unsigned short base, pre, prediv; in time_divisor_init() local 76 pre = 1; in time_divisor_init() 78 base = __res_bus_clock_speed_HZ / pre / HZ / (1 << prediv); in time_divisor_init() 80 __set_TPRV(pre); in time_divisor_init()
|
/linux-4.1.27/arch/x86/include/asm/ |
D | paravirt_types.h | 540 pre, post, ...) \ argument 548 asm volatile(pre \ 558 asm volatile(pre \ 571 #define __PVOP_CALL(rettype, op, pre, post, ...) \ argument 573 EXTRA_CLOBBERS, pre, post, ##__VA_ARGS__) 575 #define __PVOP_CALLEESAVE(rettype, op, pre, post, ...) \ argument 578 pre, post, ##__VA_ARGS__) 581 #define ____PVOP_VCALL(op, clbr, call_clbr, extra_clbr, pre, post, ...) \ argument 585 asm volatile(pre \ 595 #define __PVOP_VCALL(op, pre, post, ...) \ argument [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-driver-ppi | 26 executed in the pre-OS environment. It is the only input from 27 the OS to the pre-OS environment. The request should be an 55 operation to be executed in the pre-OS environment by the BIOS 66 operation to be executed in the pre-OS environment by the BIOS
|
D | sysfs-fs-ext4 | 57 algorithm will pre-read into the buffer cache
|
D | sysfs-devices-system-cpu | 2 Date: pre-git history 130 Date: pre-git history
|
/linux-4.1.27/Documentation/devicetree/bindings/phy/ |
D | apm-xgene-phy.txt | 35 - apm,tx-pre-cursor1 : 1st pre-cursor emphasis taps control. Two set of 39 - apm,tx-pre-cursor2 : 2st pre-cursor emphasis taps control. Two set of
|
/linux-4.1.27/drivers/atm/ |
D | horizon.c | 593 u32 pre; in make_rate() local 623 pre = DIV_ROUND_UP(br, c<<div); in make_rate() 625 if (!pre) in make_rate() 626 pre = 1; in make_rate() 629 pre = DIV_ROUND_CLOSEST(br, c<<div); in make_rate() 631 if (!pre) in make_rate() 632 pre = 1; in make_rate() 635 pre = br/(c<<div); in make_rate() 637 if (!pre) in make_rate() 640 PRINTD (DBG_QOS, "A: p=%u, d=%u", pre, div); in make_rate() [all …]
|
D | eni.c | 1250 static int comp_tx(struct eni_dev *eni_dev,int *pcr,int reserved,int *pre, in comp_tx() argument 1256 if (unlimited) *pre = *res = 0; in comp_tx() 1261 for (*pre = 0; *pre < 3; (*pre)++) in comp_tx() 1262 if (TS_CLOCK/pre_div[*pre]/64 <= *pcr) break; in comp_tx() 1263 div = pre_div[*pre]**pcr; in comp_tx() 1271 for (*pre = 3; *pre >= 0; (*pre)--) in comp_tx() 1272 if (TS_CLOCK/pre_div[*pre]/64 > -*pcr) break; in comp_tx() 1273 if (*pre < 3) (*pre)++; /* else fail later */ in comp_tx() 1274 div = pre_div[*pre]*-*pcr; in comp_tx() 1281 *pcr = TS_CLOCK/pre_div[*pre]/(*res+1); in comp_tx() [all …]
|
/linux-4.1.27/drivers/iio/adc/ |
D | qcom-spmi-vadc.c | 505 unsigned int pre; in vadc_prescaling_from_dt() local 507 for (pre = 0; pre < ARRAY_SIZE(vadc_prescale_ratios); pre++) in vadc_prescaling_from_dt() 508 if (vadc_prescale_ratios[pre].num == num && in vadc_prescaling_from_dt() 509 vadc_prescale_ratios[pre].den == den) in vadc_prescaling_from_dt() 512 if (pre == ARRAY_SIZE(vadc_prescale_ratios)) in vadc_prescaling_from_dt() 515 return pre; in vadc_prescaling_from_dt()
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | changes | 4 This is based on the rtl8180-sa2400 pre-0.22-CVS code..
|
/linux-4.1.27/Documentation/devicetree/bindings/ata/ |
D | sata_highbank.txt | 26 - calxeda,pre-clocks : a u32 that indicates the number of additional clock 42 calxeda,pre-clocks = <10>;
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | ti,drv260x.txt | 16 - library-sel - These are ROM based waveforms pre-programmed into the IC. 19 DRV260X_LIB_EMPTY - Do not use a pre-programmed library
|
/linux-4.1.27/Documentation/scsi/ |
D | lpfc.txt | 11 (pre 2.6.10). The 8.0.16 release should be used if the driver is to be 19 The driver now requires a 2.6.12 (if pre-release, 2.6.12-rc1) or later 72 At this time, the driver requires the 2.6.12 (if pre-release, 2.6.12-rc1)
|
D | ChangeLog.sym53c8xx | 140 Requires Linux-2.3.47 (tested with pre-2.3.47-6). 156 * version sym53c8xx-pre-1.6b-2. 168 Requires Linux-2.3.47 (tested with pre-2.3.47-6). 180 * version sym53c8xx-pre-1.6b-1. 469 * version pre-sym53c8xx-0.18 478 * version pre-sym53c8xx-0.17 489 * version pre-sym53c8xx-0.16 509 * version pre-sym53c8xx-0.15 522 * version pre-sym53c8xx-0.14 529 * version pre-sym53c8xx-0.13 [all …]
|
D | cxgb3i.txt | 22 payload into pre-posted final destination host-memory buffers based 37 if possible, will be directly placed into the pre-posted host DDP
|
D | ChangeLog.ncr53c8xx | 76 Requires Linux-2.3.47 (tested with pre-2.3.47-6). 93 Requires Linux-2.3.47 (tested with pre-2.3.47-6). 98 * revision pre-3.3b-1 156 * revision pre-3.2b-1
|
D | hpsa.txt | 58 tape drives, or entire storage boxes containing pre-configured logical drives.
|
D | tmscsim.txt | 63 If you got an old kernel (pre 2.1.127, pre 2.0.37p1) with an old version of 84 If you got a very old kernel without the tmscsim driver (pre 2.0.31)
|
D | aic79xx.txt | 112 - Remove pre-2.2.X support. 119 - For pre-2.5.X kernels, carefully adjust our segment
|
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/ |
D | qcom,spmi-vadc.txt | 56 - qcom,pre-scaling: 61 pre-determined ratio and use it for post scaling. Select one from 121 qcom,pre-scaling = <1 3>;
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | ppa8548.dts | 15 /include/ "fsl/mpc8548si-pre.dtsi" 103 * to stay compatible with mpc8548si-pre.dtsi.
|
D | p1010rdb-pa.dts | 12 /include/ "fsl/p1010si-pre.dtsi"
|
D | p1010rdb-pb.dts | 12 /include/ "fsl/p1010si-pre.dtsi"
|
D | bsc9131rdb.dts | 12 /include/ "fsl/bsc9131si-pre.dtsi"
|
D | bsc9132qds.dts | 12 /include/ "fsl/bsc9132si-pre.dtsi"
|
D | p1020rdb.dts | 12 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1020rdb_36b.dts | 12 /include/ "fsl/p1020si-pre.dtsi"
|
D | mpc8536ds.dts | 12 /include/ "fsl/mpc8536si-pre.dtsi"
|
D | mpc8548cds_32b.dts | 12 /include/ "fsl/mpc8548si-pre.dtsi"
|
D | mpc8536ds_36b.dts | 12 /include/ "fsl/mpc8536si-pre.dtsi"
|
D | mpc8572ds.dts | 12 /include/ "fsl/mpc8572si-pre.dtsi"
|
D | sbc8548.dts | 17 /include/ "sbc8548-pre.dtsi"
|
D | p2020ds.dts | 12 /include/ "fsl/p2020si-pre.dtsi"
|
D | t1040rdb.dts | 35 /include/ "fsl/t104xsi-pre.dtsi"
|
D | sbc8548-altflash.dts | 20 /include/ "sbc8548-pre.dtsi"
|
D | t1042rdb.dts | 35 /include/ "fsl/t104xsi-pre.dtsi"
|
D | mpc8548cds_36b.dts | 12 /include/ "fsl/mpc8548si-pre.dtsi"
|
D | t1042qds.dts | 35 /include/ "fsl/t104xsi-pre.dtsi"
|
D | t1040qds.dts | 35 /include/ "fsl/t104xsi-pre.dtsi"
|
D | mpc8572ds_36b.dts | 12 /include/ "fsl/mpc8572si-pre.dtsi"
|
D | t2081qds.dts | 35 /include/ "fsl/t208xsi-pre.dtsi"
|
D | p1010rdb-pa_36b.dts | 35 /include/ "fsl/p1010si-pre.dtsi"
|
D | t1042rdb_pi.dts | 35 /include/ "fsl/t104xsi-pre.dtsi"
|
D | t2080qds.dts | 35 /include/ "fsl/t208xsi-pre.dtsi"
|
D | b4420qds.dts | 35 /include/ "fsl/b4420si-pre.dtsi"
|
D | p1010rdb-pb_36b.dts | 35 /include/ "fsl/p1010si-pre.dtsi"
|
D | t2080rdb.dts | 35 /include/ "fsl/t208xsi-pre.dtsi"
|
D | b4860qds.dts | 35 /include/ "fsl/b4860si-pre.dtsi"
|
D | mpc8544ds.dts | 12 /include/ "fsl/mpc8544si-pre.dtsi"
|
D | kmcoge4.dts | 15 /include/ "fsl/p2041si-pre.dtsi"
|
D | p1024rdb_32b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1020mbg-pc_36b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1020rdb-pc_32b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1025rdb_36b.dts | 35 /include/ "fsl/p1021si-pre.dtsi"
|
D | p1025twr.dts | 35 /include/ "fsl/p1021si-pre.dtsi"
|
D | p1020utm-pc_32b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | oca4080.dts | 39 /include/ "fsl/p4080si-pre.dtsi"
|
D | p2020rdb-pc_32b.dts | 35 /include/ "fsl/p2020si-pre.dtsi"
|
D | p1024rdb_36b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1020rdb-pc_36b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1021rdb-pc_32b.dts | 35 /include/ "fsl/p1021si-pre.dtsi"
|
D | p1020mbg-pc_32b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1020utm-pc_36b.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p2020rdb-pc_36b.dts | 35 /include/ "fsl/p2020si-pre.dtsi"
|
D | p1022ds_36b.dts | 35 /include/ "fsl/p1022si-pre.dtsi"
|
D | p1021rdb-pc_36b.dts | 35 /include/ "fsl/p1021si-pre.dtsi"
|
D | p1022ds_32b.dts | 35 /include/ "fsl/p1022si-pre.dtsi"
|
D | p1025rdb_32b.dts | 35 /include/ "fsl/p1021si-pre.dtsi"
|
D | mvme2500.dts | 15 /include/ "fsl/p2020si-pre.dtsi"
|
D | p1022rdk.dts | 35 /include/ "fsl/p1022si-pre.dtsi"
|
D | p4080ds.dts | 35 /include/ "fsl/p4080si-pre.dtsi"
|
D | t4240rdb.dts | 35 /include/ "fsl/t4240si-pre.dtsi"
|
D | ge_imp3a.dts | 15 /include/ "fsl/p2020si-pre.dtsi"
|
D | p2020rdb.dts | 12 /include/ "fsl/p2020si-pre.dtsi"
|
D | c293pcie.dts | 35 /include/ "fsl/c293si-pre.dtsi"
|
D | p5040ds.dts | 35 /include/ "fsl/p5040si-pre.dtsi"
|
D | p2041rdb.dts | 35 /include/ "fsl/p2041si-pre.dtsi"
|
D | p5020ds.dts | 35 /include/ "fsl/p5020si-pre.dtsi"
|
D | t4240qds.dts | 35 /include/ "fsl/t4240si-pre.dtsi"
|
D | p1023rdb.dts | 37 /include/ "fsl/p1023si-pre.dtsi"
|
D | p3041ds.dts | 35 /include/ "fsl/p3041si-pre.dtsi"
|
D | p1020rdb-pd.dts | 35 /include/ "fsl/p1020si-pre.dtsi"
|
D | p1021mds.dts | 12 /include/ "fsl/p1021si-pre.dtsi"
|
D | mpc8568mds.dts | 12 /include/ "fsl/mpc8568si-pre.dtsi"
|
D | mpc8569mds.dts | 12 /include/ "fsl/mpc8569si-pre.dtsi"
|
/linux-4.1.27/arch/x86/ia32/ |
D | ia32_signal.c | 156 unsigned int pre = GET_SEG(seg); \ 158 pre |= 3; \ 159 if (pre != cur) \ 160 set_user_seg(seg, pre); \
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | pci_dn.c | 338 void *traverse_pci_devices(struct device_node *start, traverse_func pre, in traverse_pci_devices() argument 354 if (pre && ((ret = pre(dn, data)) != NULL)) in traverse_pci_devices()
|
/linux-4.1.27/Documentation/sound/oss/ |
D | AudioExcelDSP16 | 53 Loading MSS and OPL3 needs to pre load the aedsp16 module to set up correctly 57 softdep ad1848 pre: aedsp16 58 softdep opl3 pre: aedsp16
|
D | Tropez+ | 10 pre-install wavefront modprobe "-k" "cs4232"
|
D | Introduction | 426 pre-install bttv modprobe tuner ; modprobe tvmixer 427 pre-install tvmixer modprobe msp3400; modprobe tvaudio
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-upload.txt | 35 - Write 0x0000001A to register 0x07FC to init the Encoder SDRAM's pre-charge. 37 - Write 0x0000001A to register 0x08FC to init the Decoder SDRAM's pre-charge.
|
D | fw-memory.txt | 86 0x07FC: Encoder SDRAM pre-charge 94 0x08FC: Decoder SDRAM pre-charge
|
/linux-4.1.27/Documentation/networking/ |
D | framerelay.txt | 37 use 'cd linux'. v0.10 is for use on pre-2.0.3 and earlier, v0.15 is for 38 pre-2.0.4 and later.
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | ste-hrefprev60-tvk.dts | 17 model = "ST-Ericsson HREF (pre-v60) and TVK1281618 UIB";
|
D | ste-hrefprev60-stuib.dts | 17 model = "ST-Ericsson HREF (pre-v60) and ST UIB";
|
D | omap3-ldp.dts | 209 compatible = "ti,omap3-pre-es3-hsmmc";
|
/linux-4.1.27/Documentation/sound/alsa/soc/ |
D | machine.txt | 22 /* the pre and post PM functions are used to do any PM work before and 45 The machine driver has pre and post versions of suspend and resume to take care
|
/linux-4.1.27/drivers/misc/genwqe/ |
D | card_ddcb.h | 61 u8 pre; /* Preamble */ member
|
D | card_ddcb.c | 443 pddcb->pre, VCRC_LENGTH(req->cmd.asv_length), in genwqe_check_ddcb_queue() 604 pddcb->pre = DDCB_PRESET_PRE; /* 128 */ in get_next_ddcb()
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/ |
D | st,clkgen-prediv.txt | 1 Binding for a ST pre-divider clock driver.
|
D | st,flexgen.txt | 6 - a pre and final dividers (represented by a divider and gate elements)
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | simple-framebuffer-sunxi.txt | 5 pre-populated simplefb nodes.
|
D | simple-framebuffer.txt | 28 It is advised that devicetree files contain pre-filled, disabled framebuffer 34 If pre-filled framebuffer nodes are used, the firmware may need extra
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | ppc-pci.h | 37 void *traverse_pci_devices(struct device_node *start, traverse_func pre,
|
/linux-4.1.27/Documentation/ko_KR/ |
D | stable_api_nonsense.txt | 32 오랫동안 거의 변하지 않았고 앞으로도 변하지 않을 것이다. 나는 pre 0.9에서
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | ti-omap-hsmmc.txt | 13 Should be "ti,omap3-pre-es3-hsmmc" for OMAP3 controllers pre ES3.0
|
/linux-4.1.27/arch/x86/mm/ |
D | mmio-mod.c | 143 static void pre(struct kmmio_probe *p, struct pt_regs *regs, in pre() function 256 .pre_handler = pre, in ioremap_trace_core()
|
/linux-4.1.27/arch/metag/ |
D | Kconfig.soc | 67 pre-production silicon or in an FPGA environment.
|
/linux-4.1.27/arch/m32r/kernel/ |
D | head.S | 87 addi r2, #-4 ; account for pre-inc store 95 addi r2, #4 ; account for pre-inc store
|
/linux-4.1.27/drivers/staging/speakup/ |
D | Kconfig | 36 requires software to be pre-loaded on to the card before 118 contains the software which must be pre-loaded on to the 122 PC software has been pre-loaded on to the board.
|
/linux-4.1.27/drivers/video/fbdev/ |
D | pm3fb.c | 157 int f, pre, post; in pm3fb_calculate_clock() local 163 for (pre = 1; pre < 256; pre++) { in pm3fb_calculate_clock() 165 freq = ((2*PM3_REF_CLOCK * f) >> post) / pre; in pm3fb_calculate_clock() 172 *prescale = pre; in pm3fb_calculate_clock()
|
/linux-4.1.27/drivers/spi/ |
D | spi-imx.c | 255 unsigned int pre, post; in mx51_ecspi_clkdiv() local 273 pre = DIV_ROUND_UP(fin, fspi << post) - 1; in mx51_ecspi_clkdiv() 276 __func__, fin, fspi, post, pre); in mx51_ecspi_clkdiv() 279 *fres = (fin / (pre + 1)) >> post; in mx51_ecspi_clkdiv() 281 return (pre << MX51_ECSPI_CTRL_PREDIV_OFFSET) | in mx51_ecspi_clkdiv()
|
/linux-4.1.27/tools/power/cpupower/ |
D | README | 43 and to various others commenting on the previous (pre-)releases of
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-class-backlight | 55 holdover from pre-standardisation of firmware
|
/linux-4.1.27/drivers/staging/ozwpan/ |
D | README | 19 autonomous group (for older pre-WFD peripherals) or put in a listen state to
|
/linux-4.1.27/scripts/ |
D | Makefile.lib | 162 dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ 290 cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile)
|
/linux-4.1.27/arch/arm/include/asm/ |
D | spinlock.h | 5 #error SMP not supported on pre-ARMv6 CPUs
|
D | atomic.h | 137 #error SMP not supported on pre-ARMv6 CPUs
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-stat.txt | 123 --pre:: 127 perf stat --repeat 10 --null --sync --pre 'make -s O=defconfig-build/clean' -- make -s -j64 O=defco…
|
D | perf-script.txt | 26 You can also run a set of pre-canned scripts that aggregate and
|
/linux-4.1.27/arch/powerpc/boot/dts/fsl/ |
D | bsc9131si-pre.dtsi | 2 * BSC9131 Silicon/SoC Device Tree Source (pre include)
|
D | mpc8536si-pre.dtsi | 2 * MPC8536 Silicon/SoC Device Tree Source (pre include)
|
D | mpc8544si-pre.dtsi | 2 * MPC8544 Silicon/SoC Device Tree Source (pre include)
|
D | p1021si-pre.dtsi | 2 * P1021/P1012 Silicon/SoC Device Tree Source (pre include)
|
D | bsc9132si-pre.dtsi | 2 * BSC9132 Silicon/SoC Device Tree Source (pre include)
|
D | mpc8572si-pre.dtsi | 2 * MPC8572 Silicon/SoC Device Tree Source (pre include)
|
D | mpc8548si-pre.dtsi | 2 * MPC8548 Silicon/SoC Device Tree Source (pre include)
|
D | c293si-pre.dtsi | 2 * C293 Silicon/SoC Device Tree Source (pre include)
|
D | mpc8569si-pre.dtsi | 2 * MPC8569 Silicon/SoC Device Tree Source (pre include)
|
D | p1020si-pre.dtsi | 2 * P1020/P1011 Silicon/SoC Device Tree Source (pre include)
|
D | p1022si-pre.dtsi | 2 * P1022/P1013 Silicon/SoC Device Tree Source (pre include)
|
D | mpc8568si-pre.dtsi | 2 * MPC8568 Silicon/SoC Device Tree Source (pre include)
|
D | p1010si-pre.dtsi | 2 * P1010/P1014 Silicon/SoC Device Tree Source (pre include)
|
D | b4420si-pre.dtsi | 2 * B4420 Silicon/SoC Device Tree Source (pre include)
|
D | p2020si-pre.dtsi | 2 * P2020/P2010 Silicon/SoC Device Tree Source (pre include)
|
D | p1023si-pre.dtsi | 2 * P1023/P1017 Silicon/SoC Device Tree Source (pre include)
|
D | t208xsi-pre.dtsi | 2 * T2080/T2081 Silicon/SoC Device Tree Source (pre include)
|
D | b4860si-pre.dtsi | 2 * B4860 Silicon/SoC Device Tree Source (pre include)
|
D | p5020si-pre.dtsi | 2 * P5020/P5010 Silicon/SoC Device Tree Source (pre include)
|
D | t104xsi-pre.dtsi | 2 * T1040/T1042 Silicon/SoC Device Tree Source (pre include)
|
D | p2041si-pre.dtsi | 2 * P2041 Silicon/SoC Device Tree Source (pre include)
|
D | p3041si-pre.dtsi | 2 * P3041 Silicon/SoC Device Tree Source (pre include)
|
D | p5040si-pre.dtsi | 2 * P5040 Silicon/SoC Device Tree Source (pre include)
|
D | t4240si-pre.dtsi | 2 * T4240 Silicon/SoC Device Tree Source (pre include)
|
D | p4080si-pre.dtsi | 2 * P4080/P4040 Silicon/SoC Device Tree Source (pre include)
|
/linux-4.1.27/drivers/gpu/drm/sti/ |
D | NOTES | 13 - The TV OUT pre-formats (convert, clip, round) the compositor output data
|
/linux-4.1.27/drivers/net/plip/ |
D | Kconfig | 26 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
|
/linux-4.1.27/arch/ia64/ |
D | Makefile | 38 a source-tree that post-dates 18-Dec-2002. You can find a pre-compiled \
|
/linux-4.1.27/Documentation/input/ |
D | gameport-programming.txt | 161 pre-filled by cooked data by the caller, max[0..3] should be pre-filled with
|
/linux-4.1.27/Documentation/thermal/ |
D | exynos_thermal | 38 when temperature exceeds pre-defined levels.
|
/linux-4.1.27/Documentation/filesystems/ |
D | ecryptfs.txt | 69 mount a directory that has pre-existing files not created by eCryptfs,
|
D | locks.txt | 34 file with flock(). With pre 1.3.96 kernels this could result in deadlocks that,
|
/linux-4.1.27/arch/m32r/boot/compressed/ |
D | head.S | 106 addi r2, #-4 ; account for pre-inc store
|
/linux-4.1.27/Documentation/ia64/ |
D | serial.txt | 33 pre-2.6.10 pre-2.6.10
|
D | fsys.txt | 139 execution may be pre-empted and resumed on another CPU at any given 280 The ELF DSO is a pre-linked library that is mapped in by the kernel at
|
/linux-4.1.27/arch/x86/ |
D | Kconfig.cpu | 32 - "Pentium-II" for the Intel Pentium II or pre-Coppermine Celeron. 80 bool "Pentium-II/Celeron(pre-Coppermine)" 84 pre-Coppermine Celeron core. This option enables an unaligned 234 Note, this kernel will not boot on older (pre model 9) C3s.
|
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/ |
D | initrd.txt | 51 # compatibility symlink for the pre-oneiric locations
|
/linux-4.1.27/Documentation/i2c/ |
D | i2c-stub | 32 2. use i2cset (from the i2c-tools project) to pre-load some data
|
/linux-4.1.27/drivers/staging/android/ |
D | ashmem.c | 214 size_t pre = range_size(range); in range_shrink() local 220 lru_count -= pre - range_size(range); in range_shrink()
|
/linux-4.1.27/Documentation/leds/ |
D | leds-lm3556.txt | 47 and 4 patterns are pre-defined in indicator_pattern array.
|
/linux-4.1.27/Documentation/ |
D | init.txt | 21 to be pre-loaded by an initrd)
|
D | intel_txt.txt | 39 Trusted Boot (tboot) is an open source, pre-kernel/VMM module that 76 pre-launch components can be removed from the trust chain, DMA
|
D | media-framework.txt | 123 pre-allocates a number of links equal to the number of pads plus an optional 199 pre-allocated and grows dynamically as needed.
|
D | magic-number.txt | 118 ROUTER_MAGIC 0x524d4157 wan_device [in wanrouter.h pre 3.9]
|
D | binfmt_misc.txt | 95 - enable support for packed DOS applications (pre-configured dosemu hdimages):
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | fsl-asoc-card.txt | 44 source. There're a few pre-designed board connectors:
|
/linux-4.1.27/sound/pci/hda/ |
D | Kconfig | 49 Specifies the default pre-allocated buffer-size in kB for the 54 Note that the pre-allocation size can be changed dynamically
|
/linux-4.1.27/Documentation/RCU/ |
D | rcubarrier.txt | 15 pre-existing readers have finished. These old versions are needed because 22 pre-existing readers have completed. An updater wishing to delete an 175 for any pre-existing callbacks to complete.
|
D | NMI-RCU.txt | 111 to the new NMI handler, but the old pre-initialized
|
D | rculist_nulls.txt | 67 solved by pre-fetching the "next" field (with proper barriers) before
|
/linux-4.1.27/drivers/mmc/host/ |
D | rtsx_pci_sdmmc.c | 161 struct mmc_data *data, bool pre) in sd_pre_dma_transfer() argument 168 if (!pre && data->host_cookie && data->host_cookie != host->cookie) { in sd_pre_dma_transfer() 175 if (pre || data->host_cookie != host->cookie) { in sd_pre_dma_transfer() 182 if (pre) { in sd_pre_dma_transfer()
|
D | s3cmci.c | 153 u32 con, pre, cmdarg, cmdcon, cmdsta, r0, r1, r2, r3, timer, bsize; in dbg_dumpregs() local 157 pre = readl(host->base + S3C2410_SDIPRE); in dbg_dumpregs() 174 prefix, con, pre, timer); in dbg_dumpregs()
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | stmmac.txt | 17 The 1st cell is reset pre-delay in micro seconds.
|
/linux-4.1.27/Documentation/device-mapper/ |
D | dm-io.txt | 37 for the I/O. This service can be handy if the caller has a pre-assembled bio,
|
/linux-4.1.27/drivers/crypto/qat/qat_common/ |
D | qat_uclo.c | 206 struct icp_qat_uof_batch_init *pre; in qat_uclo_cleanup_batch_init_list() local 208 pre = umem_init; in qat_uclo_cleanup_batch_init_list() 210 kfree(pre); in qat_uclo_cleanup_batch_init_list()
|
/linux-4.1.27/Documentation/mmc/ |
D | mmc-async-req.txt | 6 pre-fetch makes the cache overhead relatively significant. If the DMA
|
/linux-4.1.27/Documentation/vm/ |
D | active_mm.txt | 76 Anyway, I put a pre-patch-2.3.13-1 on ftp.kernel.org just a moment ago,
|
D | frontswap.txt | 98 server configured with a large amount of RAM... without pre-configuring 260 swap device, that page is only taking up low-value pre-allocated disk
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | CHANGES | 42 mode was pre-decrement or post-increment and the address register
|
/linux-4.1.27/net/core/ |
D | flow_dissector.c | 183 __be32 pre[3]; in __skb_flow_dissect() member
|
/linux-4.1.27/drivers/media/pci/cx88/ |
D | cx88-core.c | 730 static const u32 pre[] = { 0, 0, 0, 3, 2, 1 }; in set_pll() local 742 reg = (pll & 0x3ffffff) | (pre[prescale] << 26); in set_pll()
|
/linux-4.1.27/drivers/ata/ |
D | sata_mv.c | 547 u32 pre; member 3127 hpriv->signal[idx].pre = tmp & 0x1800; /* bits 12:11 */ in mv5_read_preamp() 3165 tmp |= hpriv->signal[port].pre; in mv5_phy_errata() 3340 hpriv->signal[idx].pre = 0x1 << 5; in mv6_read_preamp() 3348 hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */ in mv6_read_preamp() 3420 m2 |= hpriv->signal[port].pre; in mv6_phy_errata() 3450 hpriv->signal[idx].pre = tmp & 0xe0; /* bits 7:5 */ in mv_soc_read_preamp()
|
/linux-4.1.27/Documentation/zh_CN/ |
D | magic-number.txt | 118 ROUTER_MAGIC 0x524d4157 wan_device [in wanrouter.h pre 3.9]
|
/linux-4.1.27/Documentation/power/ |
D | devices.txt | 537 a system image to be loaded into memory and the pre-hibernation memory contents 541 pre-hibernation memory contents restored by the boot loader, in practice this 546 the system image, restores the pre-hibernation memory contents, and passes 563 Should the restoration of the pre-hibernation memory contents fail, the boot 566 happens only rarely. Most often the pre-hibernation memory contents are 570 To achieve this, the image kernel must restore the devices' pre-hibernation
|
D | states.txt | 90 is restored to its pre-suspend state.
|
D | pci.txt | 623 pre-hibernation memory contents to be restored before the pre-hibernation system 640 Should the restoration of the pre-hibernation memory contents fail, the boot 645 If the pre-hibernation memory contents are restored successfully, which is the 648 it must restore the devices' pre-hibernation functionality, which is done much 835 This callback is responsible for restoring the pre-suspend configuration of the 859 This callback is responsible for restoring the pre-freeze configuration of 897 - during system restore, when the system is going back to its pre-hibernation
|
/linux-4.1.27/Documentation/aoe/ |
D | aoe.txt | 142 to be pre-created using a static minor-number scheme with the
|
/linux-4.1.27/sound/oss/ |
D | CHANGELOG | 266 Since pre-3.0-940712 272 Since pre-3.0-940426
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Procfile.txt | 134 The buffer pre-allocation information.
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | sram243x.S | 160 movne r9, #0x0 @ if up set flag up for pre up, hi volt
|
D | sram242x.S | 160 movne r9, #0x0 @ if up set flag up for pre up, hi volt
|
/linux-4.1.27/Documentation/fb/ |
D | modedb.txt | 70 pre-defined modes approved by VESA(TM). The second is the Generalized Timing
|
/linux-4.1.27/Documentation/rapidio/ |
D | rapidio.txt | 317 This process can be automated by specifying pre- or post- dependencies in the 334 softdep rio-scan pre: idt_gen2 idtcps tsi57x
|
/linux-4.1.27/arch/arm/mm/ |
D | Kconfig | 719 Support for the BE-32 (big-endian) mode on pre-ARMv6 processors. 784 An SMP system using a pre-ARMv6 processor (there are apparently 792 SMP on a pre-ARMv6 processor? Well OK then.
|
/linux-4.1.27/drivers/mtd/chips/ |
D | Kconfig | 153 A subset of them are pre-programmed at the factory with a
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | README | 127 ps_state = <0/1/2/3, full power state/awake state/pre-sleep state/sleep state>
|
/linux-4.1.27/Documentation/arm/ |
D | Booting | 191 unless the virtualisations are already in use by a pre-installed
|