/linux-4.1.27/drivers/media/rc/img-ir/ |
D | Makefile | 1 img-ir-y := img-ir-core.o 2 img-ir-$(CONFIG_IR_IMG_RAW) += img-ir-raw.o 3 img-ir-$(CONFIG_IR_IMG_HW) += img-ir-hw.o 4 img-ir-$(CONFIG_IR_IMG_NEC) += img-ir-nec.o 5 img-ir-$(CONFIG_IR_IMG_JVC) += img-ir-jvc.o 6 img-ir-$(CONFIG_IR_IMG_SONY) += img-ir-sony.o 7 img-ir-$(CONFIG_IR_IMG_SHARP) += img-ir-sharp.o 8 img-ir-$(CONFIG_IR_IMG_SANYO) += img-ir-sanyo.o 9 img-ir-$(CONFIG_IR_IMG_RC5) += img-ir-rc5.o 10 img-ir-$(CONFIG_IR_IMG_RC6) += img-ir-rc6.o [all …]
|
/linux-4.1.27/drivers/mtd/ |
D | redboot.c | 46 struct fis_image_desc *img; member 53 static inline int redboot_checksum(struct fis_image_desc *img) in redboot_checksum() argument 198 new_fl->img = &buf[i]; in parse_redboot_partitions() 208 while(*prev && (*prev)->img->flash_base < new_fl->img->flash_base) in parse_redboot_partitions() 216 if (fl->img->flash_base) { in parse_redboot_partitions() 222 …if (tmp_fl->img->flash_base + tmp_fl->img->size + master->erasesize <= tmp_fl->next->img->flash_ba… in parse_redboot_partitions() 246 if (fl->img->flash_base) { in parse_redboot_partitions() 248 parts[0].size = fl->img->flash_base; in parse_redboot_partitions() 254 parts[i].size = fl->img->size; in parse_redboot_partitions() 255 parts[i].offset = fl->img->flash_base; in parse_redboot_partitions() [all …]
|
/linux-4.1.27/drivers/video/fbdev/msm/ |
D | mdp_hw.h | 550 #define IS_YCRCB(img) ((img == MDP_Y_CRCB_H2V2) | (img == MDP_Y_CBCR_H2V2) | \ argument 551 (img == MDP_Y_CRCB_H2V1) | (img == MDP_Y_CBCR_H2V1) | \ 552 (img == MDP_YCRYCB_H2V1)) 553 #define IS_RGB(img) ((img == MDP_RGB_565) | (img == MDP_RGB_888) | \ argument 554 (img == MDP_ARGB_8888) | (img == MDP_RGBA_8888) | \ 555 (img == MDP_XRGB_8888) | (img == MDP_BGRA_8888) | \ 556 (img == MDP_RGBX_8888)) 557 #define HAS_ALPHA(img) ((img == MDP_ARGB_8888) | (img == MDP_RGBA_8888) | \ argument 558 (img == MDP_BGRA_8888)) 560 #define IS_PSEUDOPLNR(img) ((img == MDP_Y_CRCB_H2V2) | \ argument [all …]
|
D | mdp_ppp.c | 526 static void get_len(struct mdp_img *img, struct mdp_rect *rect, uint32_t bpp, in get_len() argument 529 *len0 = IMG_LEN(rect->h, img->width, rect->w, bpp); in get_len() 530 if (IS_PSEUDOPLNR(img->format)) in get_len() 531 *len1 = *len0/Y_TO_CRCB_RATIO(img->format); in get_len() 584 static void get_chroma_addr(struct mdp_img *img, struct mdp_rect *rect, in get_chroma_addr() argument 588 uint32_t compress_v = Y_TO_CRCB_RATIO(img->format); in get_chroma_addr() 592 if (IS_PSEUDOPLNR(img->format)) { in get_chroma_addr() 595 ((rect->y + 1) / compress_v) * img->width; in get_chroma_addr() 596 *addr = base + (img->width * img->height * bpp); in get_chroma_addr()
|
D | mdp.c | 255 int get_img(struct mdp_img *img, struct fb_info *info, in get_img() argument 260 struct fd f = fdget(img->memory_id); in get_img()
|
/linux-4.1.27/arch/metag/boot/dts/ |
D | tz1090.dtsi | 14 compatible = "toumaz,tz1090", "img,meta"; 19 compatible = "img,meta-intc"; 36 compatible = "img,pdc-intc"; 49 compatible = "img,tz1090-pinctrl"; 55 compatible = "img,tz1090-pdc-pinctrl"; 62 compatible = "img,tz1090-gpio"; 98 compatible = "img,tz1090-pdc-gpio";
|
D | skeleton.dtsi | 8 compatible = "img,meta";
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
D | gm204.c | 31 pmu_code(struct nv50_devinit_priv *priv, u32 pmu, u32 img, u32 len, bool sec) in pmu_code() argument 40 nv_wr32(priv, 0x10a184, nv_ro32(bios, img + i)); in pmu_code() 50 pmu_data(struct nv50_devinit_priv *priv, u32 pmu, u32 img, u32 len) in pmu_data() argument 57 nv_wr32(priv, 0x10a1c4, nv_ro32(bios, img + i)); in pmu_data() 135 u32 img = nv_ro16(bios, bit_I.offset + 0x14); in gm204_devinit_post() local 137 pmu_data(priv, pmu, img, len); in gm204_devinit_post() 143 u32 img = nv_ro16(bios, bit_I.offset + 0x18); in gm204_devinit_post() local 145 pmu_data(priv, pmu, img, len); in gm204_devinit_post()
|
/linux-4.1.27/arch/x86/boot/compressed/ |
D | aslr.c | 182 static bool mem_avoid_overlap(struct mem_vector *img) in mem_avoid_overlap() argument 188 if (mem_overlaps(img, &mem_avoid[i])) in mem_avoid_overlap() 200 if (mem_overlaps(img, &avoid)) in mem_avoid_overlap() 236 struct mem_vector region, img; in process_e820_entry() local 272 for (img.start = region.start, img.size = image_size ; in process_e820_entry() 273 mem_contains(®ion, &img) ; in process_e820_entry() 274 img.start += CONFIG_PHYSICAL_ALIGN) { in process_e820_entry() 275 if (mem_avoid_overlap(&img)) in process_e820_entry() 277 slots_append(img.start); in process_e820_entry()
|
/linux-4.1.27/scripts/ |
D | extract-vmlinux | 30 for pos in `tr "$1\n$2" "\n$2=" < "$img" | grep -abo "^$2"` 33 tail -c+$pos "$img" | $3 > $tmp 2> /dev/null 40 img=$1 52 check_vmlinux $img
|
D | extract-ikconfig | 33 for pos in `tr "$1\n$2" "\n$2=" < "$img" | grep -abo "^$2"` 36 tail -c+$pos "$img" | $3 > $tmp2 2> /dev/null 43 img=$1 56 dump_config "$img"
|
/linux-4.1.27/Documentation/devicetree/bindings/dma/ |
D | img-mdc-dma.txt | 4 - compatible: Must be "img,pistachio-mdc-dma". 11 - img,cr-periph: Must contain a phandle to the peripheral control syscon 13 - img,max-burst-multiplier: Must be the maximum supported burst size multiplier. 29 compatible = "img,pistachio-mdc-dma"; 46 img,max-burst-multiplier = <16>; 47 img,cr-periph = <&cr_periph>;
|
/linux-4.1.27/Documentation/devicetree/bindings/pwm/ |
D | img-pwm.txt | 4 - compatible: Should be "img,pistachio-pwm" 13 - img,cr-periph: Must contain a phandle to the peripheral control 18 compatible = "img,pistachio-pwm"; 23 img,cr-periph = <&cr_periph>;
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
D | pistachio-clock.txt | 24 - compatible: Must be "img,pistachio-clk". 35 compatible = "img,pistachio-clk"; 52 - compatible: Must be "img,pistachio-periph-clk". 63 compatible = "img,pistachio-clk-periph"; 80 - compatible: Must include "img,pistachio-periph-cr" and "syscon". 91 compatible = "img,pistachio-cr-periph", "syscon"; 106 - compatible: Must include "img,pistachio-cr-top" and "syscon". 117 compatible = "img,pistachio-cr-top", "syscon";
|
/linux-4.1.27/Documentation/filesystems/ |
D | bfs.txt | 14 # losetup /dev/loop0 stand.img 17 where stand.img is a file containing the image of BFS filesystem. 25 # mount -t bfs -o loop stand.img /mnt/stand 45 # dd if=/dev/rdsk/c0b0t0d0sa of=stand.img bs=512 50 # od -Ad -tx4 stand.img | more
|
/linux-4.1.27/Documentation/ia64/ |
D | xen.txt | 45 # mkinitrd -f /boot/efi/efi/redhat/initrd-2.6.18.8-xen.img \ 55 # dd if=/dev/zero of=/root/rhel5.img bs=1M seek=4096 count=0 56 # mke2fs -F -j /root/rhel5.img 57 # mount -o loop /root/rhel5.img /mnt 110 initrd=initrd-2.6.18.8-xen.img 150 # mkinitrd -f /boot/efi/efi/redhat/initrd-2.6-pv_ops-xenU.img \ 162 ramdisk = "/boot/efi/efi/redhat/initrd-2.6-pv_ops-xenU.img" 166 disk = [ 'file:/root/rhel5.img,xvda1,w' ]
|
/linux-4.1.27/arch/sparc/boot/ |
D | Makefile | 6 ROOT_IMG := /usr/src/root.img 10 targets := tftpboot.img image zImage vmlinux.aout 69 $(obj)/tftpboot.img: $(obj)/image $(obj)/piggyback System.map $(ROOT_IMG) FORCE
|
D | .gitignore | 5 tftpboot.img
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | spi-img-spfi.txt | 4 - compatible: Must be "img,spfi". 22 - img,supports-quad-mode: Should be set if the interface supports quad mode 28 compatible = "img,spfi";
|
/linux-4.1.27/Documentation/x86/ |
D | early-microcode.txt | 33 /boot/initrd-3.5.0.ucode.img with original microcode microcode.bin and 34 original initrd image /boot/initrd-3.5.0.img. 42 cat ucode.cpio /boot/initrd-3.5.0.img >/boot/initrd-3.5.0.ucode.img
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
D | iwl-drv.c | 164 static void iwl_free_fw_img(struct iwl_drv *drv, struct fw_img *img) in iwl_free_fw_img() argument 168 iwl_free_fw_desc(drv, &img->sec[i]); in iwl_free_fw_img() 182 iwl_free_fw_img(drv, drv->fw.img + i); in iwl_dealloc_ucode() 285 struct fw_img_parsing img[IWL_UCODE_TYPE_MAX]; member 306 return &pieces->img[type].sec[sec]; in get_sec() 314 pieces->img[type].sec[sec].data = data; in set_sec_data() 322 pieces->img[type].sec[sec].size = size; in set_sec_size() 329 return pieces->img[type].sec[sec].size; in get_sec_size() 337 pieces->img[type].sec[sec].offset = offset; in set_sec_offset() 382 struct fw_img_parsing *img; in iwl_store_ucode_sec() local [all …]
|
D | iwl-fw.h | 171 struct fw_img img[IWL_UCODE_TYPE_MAX]; member
|
/linux-4.1.27/Documentation/devicetree/bindings/watchdog/ |
D | imgpdc-wdt.txt | 4 - compatible : Should be "img,pdc-wdt" 14 compatible = "img,pdc-wdt";
|
/linux-4.1.27/arch/x86/boot/ |
D | Makefile | 120 image_cmdline = default linux $(FDARGS) $(if $(FDINITRD),initrd=initrd.img,) 132 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' a:initrd.img ; \ 144 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' v:initrd.img ; \ 155 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' w:initrd.img ; \ 175 cp '$(FDINITRD)' $(obj)/isoimage/initrd.img ; \
|
/linux-4.1.27/Documentation/ |
D | efi-stub.txt | 62 initrd-large.img 65 initrd-small.img 66 initrd-medium.img 68 to boot with the initrd-large.img file if the current working 71 fs0:\Kernels> bzImage.efi initrd=\Kernels\initrd-large.img
|
D | dontdiff | 226 tftpboot.img
|
D | initrd.txt | 88 find . | cpio --quiet -H newc -o | gzip -9 -n > /boot/imagefile.img 94 gzip -cd /boot/imagefile.img | cpio -imd --quiet
|
D | intel_txt.txt | 190 module /initrd-2.6.29-tip.img
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-img-scb.txt | 4 - compatible: "img,scb-i2c" 18 compatible = "img,scb-i2c";
|
/linux-4.1.27/sound/soc/codecs/ |
D | wm0010.c | 357 u64 *img; in wm0010_firmware_load() local 430 img = kzalloc(len, GFP_KERNEL | GFP_DMA); in wm0010_firmware_load() 431 if (!img) { in wm0010_firmware_load() 435 xfer->t.tx_buf = img; in wm0010_firmware_load() 437 byte_swap_64((u64 *)&rec->command, img, len); in wm0010_firmware_load() 507 u32 *img; in wm0010_stage2_load() local 522 img = kzalloc(fw->size, GFP_KERNEL | GFP_DMA); in wm0010_stage2_load() 523 if (!img) { in wm0010_stage2_load() 534 memcpy(img, &fw->data[0], fw->size); in wm0010_stage2_load() 539 t.tx_buf = img; in wm0010_stage2_load() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | img-dw-mshc.txt | 13 - "img,pistachio-dw-mshc": for Pistachio SoCs 18 compatible = "img,pistachio-dw-mshc";
|
/linux-4.1.27/Documentation/devicetree/bindings/metag/ |
D | meta.txt | 9 The type shall be <string> and the value shall include "img,meta". 26 compatible = "toumaz,tz1090", "img,meta";
|
D | meta-intc.txt | 9 The type shall be <string> and the value shall include "img,meta-intc". 65 compatible = "img,meta-intc";
|
D | pdc-intc.txt | 11 The type shall be <string> and the value shall include "img,pdc-intc". 65 compatible = "img,pdc-intc";
|
/linux-4.1.27/Documentation/devicetree/bindings/crypto/ |
D | img-hash.txt | 8 - compatible : "img,hash-accelerator" 20 compatible = "img,hash-accelerator";
|
/linux-4.1.27/Documentation/devicetree/bindings/media/ |
D | img-ir-rev1.txt | 7 - compatible: Should be "img,ir-rev1" 29 compatible = "img,ir-rev1";
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | gpio-tz1090-pdc.txt | 4 - compatible: Compatible property value should be "img,tz1090-pdc-gpio". 37 compatible = "img,tz1090-pdc-gpio";
|
D | gpio-tz1090.txt | 4 - compatible: Compatible property value should be "img,tz1090-gpio". 65 compatible = "img,tz1090-gpio";
|
/linux-4.1.27/arch/cris/boot/compressed/ |
D | README | 14 happens in this makefile. Together they make up piggy.img. 17 the binary file decompress.bin, which is catted together with piggy.img
|
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/ |
D | initrd.txt | 10 zcat /initrd.img > /tmp/initrd.img.zcat 13 cpio -id < /tmp/initrd.img.zcat
|
/linux-4.1.27/drivers/video/fbdev/ |
D | tridentfb.c | 517 const struct fb_image *img) in tridentfb_imageblit() argument 522 if ((info->flags & FBINFO_HWACCEL_DISABLED) || img->depth != 1) { in tridentfb_imageblit() 523 cfb_imageblit(info, img); in tridentfb_imageblit() 527 col = img->fg_color; in tridentfb_imageblit() 530 bgcol = img->bg_color; in tridentfb_imageblit() 534 col = ((u32 *)(info->pseudo_palette))[img->fg_color]; in tridentfb_imageblit() 535 bgcol = ((u32 *)(info->pseudo_palette))[img->bg_color]; in tridentfb_imageblit() 540 par->image_blit(par, img->data, img->dx, img->dy, in tridentfb_imageblit() 541 img->width, img->height, col, bgcol); in tridentfb_imageblit() 543 cfb_imageblit(info, img); in tridentfb_imageblit()
|
D | metronomefb.c | 455 u16 *img = (u16 *)(par->metromem_img + index); in metronomefb_dpy_update_page() local 459 *(img + i) = (buf[i] << 5) & 0xE0E0; in metronomefb_dpy_update_page() 460 csum += *(img + i); in metronomefb_dpy_update_page()
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | debugfs.c | 128 const struct fw_img *img; in iwl_dbgfs_sram_read() local 137 img = &mvm->fw->img[mvm->cur_ucode]; in iwl_dbgfs_sram_read() 138 ofs = img->sec[IWL_UCODE_SECTION_DATA].offset; in iwl_dbgfs_sram_read() 139 len = img->sec[IWL_UCODE_SECTION_DATA].len; in iwl_dbgfs_sram_read() 162 const struct fw_img *img; in iwl_dbgfs_sram_write() local 169 img = &mvm->fw->img[mvm->cur_ucode]; in iwl_dbgfs_sram_write() 170 img_offset = img->sec[IWL_UCODE_SECTION_DATA].offset; in iwl_dbgfs_sram_write() 171 img_len = img->sec[IWL_UCODE_SECTION_DATA].len; in iwl_dbgfs_sram_write() 1180 const struct fw_img *img; in iwl_dbgfs_d3_sram_read() local 1186 img = &mvm->fw->img[IWL_UCODE_WOWLAN]; in iwl_dbgfs_d3_sram_read() [all …]
|
D | d3.c | 1833 const struct fw_img *img = &mvm->fw->img[IWL_UCODE_WOWLAN]; in iwl_mvm_read_d3_sram() local 1834 u32 len = img->sec[IWL_UCODE_SECTION_DATA].len; in iwl_mvm_read_d3_sram() 1835 u32 offs = img->sec[IWL_UCODE_SECTION_DATA].offset; in iwl_mvm_read_d3_sram()
|
D | mac80211.c | 582 if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len && in iwl_mvm_mac_setup_register() 1041 const struct fw_img *img; in iwl_mvm_fw_error_dump() local 1043 img = &mvm->fw->img[mvm->cur_ucode]; in iwl_mvm_fw_error_dump() 1044 sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset; in iwl_mvm_fw_error_dump() 1045 sram_len = img->sec[IWL_UCODE_SECTION_DATA].len; in iwl_mvm_fw_error_dump()
|
D | fw.c | 95 return &mvm->fw->img[ucode_type]; in iwl_get_ucode_image()
|
/linux-4.1.27/tools/testing/ktest/examples/ |
D | kvm.conf | 56 POST_INSTALL = ${SSH} /sbin/dracut -f /boot/initramfs-test.img $KERNEL_VERSION
|
/linux-4.1.27/drivers/crypto/ |
D | Makefile | 9 obj-$(CONFIG_CRYPTO_DEV_IMGTEC_HASH) += img-hash.o
|
/linux-4.1.27/Documentation/devicetree/bindings/mips/img/ |
D | pistachio.txt | 6 - compatible: Must include "img,pistachio".
|
/linux-4.1.27/arch/sparc/ |
D | Makefile | 68 image zImage uImage tftpboot.img vmlinux.aout: vmlinux
|
/linux-4.1.27/drivers/media/rc/ |
D | Makefile | 39 obj-$(CONFIG_IR_IMG) += img-ir/
|
D | Kconfig | 346 source "drivers/media/rc/img-ir/Kconfig"
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | img,tz1090-pdc-pinctrl.txt | 4 - compatible: "img,tz1090-pdc-pinctrl" 94 compatible = "img,tz1090-pdc-pinctrl";
|
D | img,tz1090-pinctrl.txt | 4 - compatible: "img,tz1090-pinctrl" 202 compatible = "img,tz1090-pinctrl";
|
/linux-4.1.27/drivers/pwm/ |
D | Makefile | 13 obj-$(CONFIG_PWM_IMG) += pwm-img.o
|
D | Kconfig | 145 will be called pwm-img
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/ |
D | ucode.c | 54 return &priv->fw->img[ucode_type]; in iwl_get_ucode_image() 418 if (!priv->fw->img[IWL_UCODE_INIT].sec[0].len) in iwl_run_init_ucode()
|
D | mac80211.c | 162 if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len && in iwlagn_mac_setup_register() 447 const struct fw_img *img; in iwlagn_mac_resume() local 490 img = &priv->fw->img[IWL_UCODE_WOWLAN]; in iwlagn_mac_resume() 493 kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len, in iwlagn_mac_resume() 499 img->sec[IWL_UCODE_SECTION_DATA].len / 4); in iwlagn_mac_resume()
|
D | debugfs.c | 109 const struct fw_img *img; in iwl_dbgfs_sram_read() local 120 img = &priv->fw->img[priv->cur_ucode]; in iwl_dbgfs_sram_read() 121 priv->dbgfs_sram_len = img->sec[IWL_UCODE_SECTION_DATA].len; in iwl_dbgfs_sram_read() 218 const struct fw_img *img = &priv->fw->img[IWL_UCODE_WOWLAN]; in iwl_dbgfs_wowlan_sram_read() local 225 img->sec[IWL_UCODE_SECTION_DATA].len); in iwl_dbgfs_wowlan_sram_read()
|
/linux-4.1.27/drivers/dma/ |
D | Makefile | 55 obj-$(CONFIG_IMG_MDC_DMA) += img-mdc-dma.o
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | sur40.c | 372 struct sur40_image_header *img = (void *)(sur40->bulk_in_buffer); in sur40_process_video() local 409 if (le32_to_cpu(img->magic) != VIDEO_HEADER_MAGIC) { in sur40_process_video() 414 if (le32_to_cpu(img->size) != sur40_video_format.sizeimage) { in sur40_process_video()
|
/linux-4.1.27/Documentation/devicetree/bindings/ |
D | vendor-prefixes.txt | 102 img Imagination Technologies Ltd. 153 powervr PowerVR (deprecated, use img)
|
/linux-4.1.27/drivers/infiniband/hw/qib/ |
D | qib_sd7220.c | 862 const u8 *img, int len, int offset) in qib_sd7220_prog_ld() argument 872 (u8 *)img + sofar, req, 0); in qib_sd7220_prog_ld() 886 const u8 *img, int len, int offset) in qib_sd7220_prog_vfy() argument 905 if (readback[idx] != img[idx+sofar]) in qib_sd7220_prog_vfy()
|
/linux-4.1.27/drivers/spi/ |
D | Makefile | 44 obj-$(CONFIG_SPI_IMG_SPFI) += spi-img-spfi.o
|
/linux-4.1.27/drivers/i2c/busses/ |
D | Makefile | 56 obj-$(CONFIG_I2C_IMG) += i2c-img-scb.o
|
D | Kconfig | 564 will be called i2c-img-scb.
|
/linux-4.1.27/tools/lguest/ |
D | lguest.txt | 58 http://xm-test.xensource.com/ramdisks/initrd-1.1-i386.img
|
/linux-4.1.27/drivers/net/ethernet/neterion/vxge/ |
D | vxge-main.c | 4532 struct eprom_image img[VXGE_HW_MAX_ROM_IMAGES]; in vxge_probe() local 4534 status = vxge_hw_vpath_eprom_img_ver_get(hldev, img); in vxge_probe() 4542 hldev->eprom_versions[i] = img[i].version; in vxge_probe() 4543 if (!img[i].is_valid) in vxge_probe() 4547 VXGE_EPROM_IMG_MAJOR(img[i].version), in vxge_probe() 4548 VXGE_EPROM_IMG_MINOR(img[i].version), in vxge_probe() 4549 VXGE_EPROM_IMG_FIX(img[i].version), in vxge_probe() 4550 VXGE_EPROM_IMG_BUILD(img[i].version)); in vxge_probe()
|
D | vxge-config.c | 374 struct eprom_image *img) in vxge_hw_vpath_eprom_img_ver_get() argument 394 img[i].is_valid = VXGE_HW_GET_EPROM_IMAGE_VALID(data0); in vxge_hw_vpath_eprom_img_ver_get() 395 img[i].index = VXGE_HW_GET_EPROM_IMAGE_INDEX(data0); in vxge_hw_vpath_eprom_img_ver_get() 396 img[i].type = VXGE_HW_GET_EPROM_IMAGE_TYPE(data0); in vxge_hw_vpath_eprom_img_ver_get() 397 img[i].version = VXGE_HW_GET_EPROM_IMAGE_REV(data0); in vxge_hw_vpath_eprom_img_ver_get()
|
/linux-4.1.27/drivers/crypto/qat/qat_common/ |
D | qat_uclo.c | 593 struct icp_qat_uof_image *img, in qat_uclo_map_image_page() argument 603 ((char *)img + sizeof(struct icp_qat_uof_image)); in qat_uclo_map_image_page()
|
/linux-4.1.27/drivers/hid/ |
D | wacom_sys.c | 629 const unsigned len, const void *img) in wacom_led_putimage() argument 651 memcpy(buf + 3, img + i * chunk_len, chunk_len); in wacom_led_putimage()
|
/linux-4.1.27/sound/pci/riptide/ |
D | riptide.c | 708 static int loadfirmware(struct cmdif *cif, const unsigned char *img, in loadfirmware() argument 717 in = img; in loadfirmware() 743 if (*img++ == '\n') in loadfirmware()
|
/linux-4.1.27/Documentation/networking/ |
D | cxgb.txt | 237 initrd /initrd-2.4.21-27.ELsmp.img
|
/linux-4.1.27/drivers/media/pci/meye/ |
D | meye.c | 754 static int mchip_uncompress_frame(u8 *img, int imgsize, u8 *buf, int bufsize)
|
/linux-4.1.27/drivers/net/ethernet/emulex/benet/ |
D | be_main.c | 4262 static int be_flash(struct be_adapter *adapter, const u8 *img, in be_flash() argument 4287 memcpy(req->data_buf, img, num_bytes); in be_flash() 4288 img += num_bytes; in be_flash()
|
/linux-4.1.27/ |
D | MAINTAINERS | 5051 F: drivers/media/rc/img-ir/
|