/drivers/misc/eeprom/ |
D | at25.c | 35 struct bin_attribute bin; member 80 if (unlikely(offset >= at25->bin.size)) in at25_ee_read() 82 if ((offset + count) > at25->bin.size) in at25_ee_read() 83 count = at25->bin.size - offset; in at25_ee_read() 158 if (unlikely(off >= at25->bin.size)) in at25_ee_write() 160 if ((off + count) > at25->bin.size) in at25_ee_write() 161 count = at25->bin.size - off; in at25_ee_write() 422 sysfs_bin_attr_init(&at25->bin); in at25_probe() 423 at25->bin.attr.name = "eeprom"; in at25_probe() 424 at25->bin.attr.mode = S_IRUSR; in at25_probe() [all …]
|
D | eeprom_93xx46.c | 31 struct bin_attribute bin; member 51 if (unlikely(off >= edev->bin.size)) in eeprom_93xx46_bin_read() 53 if ((off + count) > edev->bin.size) in eeprom_93xx46_bin_read() 54 count = edev->bin.size - off; in eeprom_93xx46_bin_read() 203 if (unlikely(off >= edev->bin.size)) in eeprom_93xx46_bin_write() 205 if ((off + count) > edev->bin.size) in eeprom_93xx46_bin_write() 206 count = edev->bin.size - off; in eeprom_93xx46_bin_write() 342 sysfs_bin_attr_init(&edev->bin); in eeprom_93xx46_probe() 343 edev->bin.attr.name = "eeprom"; in eeprom_93xx46_probe() 344 edev->bin.attr.mode = S_IRUSR; in eeprom_93xx46_probe() [all …]
|
D | at24.c | 65 struct bin_attribute bin; member 575 sysfs_bin_attr_init(&at24->bin); in at24_probe() 576 at24->bin.attr.name = "eeprom"; in at24_probe() 577 at24->bin.attr.mode = chip.flags & AT24_FLAG_IRUGO ? S_IRUGO : S_IRUSR; in at24_probe() 578 at24->bin.read = at24_bin_read; in at24_probe() 579 at24->bin.size = chip.byte_len; in at24_probe() 592 at24->bin.write = at24_bin_write; in at24_probe() 593 at24->bin.attr.mode |= S_IWUSR; in at24_probe() 626 err = sysfs_create_bin_file(&client->dev.kobj, &at24->bin); in at24_probe() 633 at24->bin.size, client->name, in at24_probe() [all …]
|
/drivers/scsi/qla2xxx/ |
D | Kconfig | 15 21xx ql2100_fw.bin 16 22xx ql2200_fw.bin 17 2300, 2312, 6312 ql2300_fw.bin 18 2322, 6322 ql2322_fw.bin 19 24xx, 54xx ql2400_fw.bin 20 25xx ql2500_fw.bin
|
/drivers/uwb/i1480/dfu/ |
D | mac.c | 41 const u32 *bin; member 78 hdr->bin = data_itr; in fw_hdr_load() 171 size_t size = hdr->length*sizeof(hdr->bin[0]); in i1480_fw_cmp() 173 u8 *bin = (u8 *) hdr->bin; in i1480_fw_cmp() local 183 if (memcmp(i1480->cmd_buf, bin + src_itr, result)) { in i1480_fw_cmp() 186 if (bin[src_itr + cnt] != buf[cnt]) { in i1480_fw_cmp() 190 bin[src_itr + cnt], buf[cnt]); in i1480_fw_cmp() 226 hdr_itr->length * sizeof(hdr_itr->bin[0]), in mac_fw_hdrs_push() 228 result = i1480->write(i1480, hdr_itr->address, hdr_itr->bin, in mac_fw_hdrs_push() 229 hdr_itr->length*sizeof(hdr_itr->bin[0])); in mac_fw_hdrs_push() [all …]
|
/drivers/char/ |
D | dsp56k.c | 125 static int dsp56k_upload(u_char __user *bin, int len) in dsp56k_upload() argument 170 get_user(dsp56k_host_interface.data.b[1], bin++); in dsp56k_upload() 171 get_user(dsp56k_host_interface.data.b[2], bin++); in dsp56k_upload() 172 get_user(dsp56k_host_interface.data.b[3], bin++); in dsp56k_upload() 319 char __user *bin; in dsp56k_ioctl() local 325 if(get_user(bin, &binary->bin) < 0) in dsp56k_ioctl() 335 r = dsp56k_upload(bin, len); in dsp56k_ioctl()
|
/drivers/net/wan/ |
D | Makefile | 51 $(LD68K) --oformat binary -Ttext 0x1000 $(obj)/wanxlfw.o -o $(obj)/wanxlfw.bin; \ 52 …hexdump -ve '"\n" 16/1 "0x%02X,"' $(obj)/wanxlfw.bin | sed 's/0x ,//g;1s/^/static const u8 firmwa… 53 rm -f $(obj)/wanxlfw.bin $(obj)/wanxlfw.o
|
/drivers/net/wireless/ath/ath9k/ |
D | ar9002_phy.c | 172 int bin, cur_bin; in ar9002_hw_spur_mitigate() local 239 bin = bb_spur * 320; in ar9002_hw_spur_mitigate() 292 upper = bin + 100; in ar9002_hw_spur_mitigate() 293 lower = bin - 100; in ar9002_hw_spur_mitigate() 312 upper = bin + 120; in ar9002_hw_spur_mitigate() 313 lower = bin - 120; in ar9002_hw_spur_mitigate() 319 volatile int tmp_v = abs(cur_vit_mask - bin); in ar9002_hw_spur_mitigate()
|
D | ar5008_phy.c | 254 int bin, cur_bin; in ar5008_hw_spur_mitigate() local 295 bin = bb_spur * 32; in ar5008_hw_spur_mitigate() 324 upper = bin + 100; in ar5008_hw_spur_mitigate() 325 lower = bin - 100; in ar5008_hw_spur_mitigate() 344 upper = bin + 120; in ar5008_hw_spur_mitigate() 345 lower = bin - 120; in ar5008_hw_spur_mitigate() 351 volatile int tmp_v = abs(cur_vit_mask - bin); in ar5008_hw_spur_mitigate()
|
/drivers/atm/ |
D | .gitignore | 4 pca200e.bin
|
/drivers/scsi/arcmsr/ |
D | arcmsr_attr.c | 65 struct bin_attribute *bin, in arcmsr_sysfs_iop_message_read() argument 112 struct bin_attribute *bin, in arcmsr_sysfs_iop_message_write() argument 160 struct bin_attribute *bin, in arcmsr_sysfs_iop_message_clear() argument
|
/drivers/video/logo/ |
D | logo_m32r_clut224.ppm | 7 # convert - imagemagick: /usr/bin/convert
|
/drivers/net/wireless/ath/ath5k/ |
D | eeprom.c | 40 static u16 ath5k_eeprom_bin2freq(struct ath5k_eeprom_info *ee, u16 bin, in ath5k_eeprom_bin2freq() argument 45 if (bin == AR5K_EEPROM_CHANNEL_DIS) in ath5k_eeprom_bin2freq() 46 return bin; in ath5k_eeprom_bin2freq() 50 val = (5 * bin) + 4800; in ath5k_eeprom_bin2freq() 52 val = bin > 62 ? (10 * 62) + (5 * (bin - 62)) + 5100 : in ath5k_eeprom_bin2freq() 53 (bin * 10) + 5100; in ath5k_eeprom_bin2freq() 56 val = bin + 2300; in ath5k_eeprom_bin2freq() 58 val = bin + 2400; in ath5k_eeprom_bin2freq()
|
/drivers/base/ |
D | Kconfig | 59 rescue mode with init=/bin/sh, even when the /dev directory 129 For example, you might set CONFIG_EXTRA_FIRMWARE="usb8388.bin", copy 130 the usb8388.bin file into the firmware directory, and build the kernel. 131 Then any request_firmware("usb8388.bin") will be satisfied internally
|
/drivers/net/wireless/libertas/ |
D | README | 24 o. Copy the firmware image (e.g. usb8388.bin) to /lib/firmware/ 28 insmod usb8388.ko [fw_name=usb8388.bin]
|
/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_sp.c | 2525 int bin; in bnx2x_mcast_set_one_rule_e2() local 2535 bin = bnx2x_mcast_bin_from_mac(cfg_data->mac); in bnx2x_mcast_set_one_rule_e2() 2536 BIT_VEC64_SET_BIT(o->registry.aprox_match.vec, bin); in bnx2x_mcast_set_one_rule_e2() 2546 bin = bnx2x_mcast_clear_first_bin(o); in bnx2x_mcast_set_one_rule_e2() 2550 bin = cfg_data->bin; in bnx2x_mcast_set_one_rule_e2() 2560 "Setting" : "Clearing"), bin); in bnx2x_mcast_set_one_rule_e2() 2562 data->rules[idx].bin_id = (u8)bin; in bnx2x_mcast_set_one_rule_e2() 2588 cfg_data.bin = (u8)cur_bin; in bnx2x_mcast_handle_restore_cmd_e2()
|
D | bnx2x_sp.h | 511 u8 bin; /* used in a RESTORE flow */ member
|
/drivers/staging/speakup/ |
D | spkguide.txt | 439 #!/bin/bash 446 #!/bin/bash 453 #!/bin/bash 460 #!/bin/bash 468 path, perhaps /usr/local/bin, and set the permissions to 755 with the 663 under /usr/bin. 665 /usr/bin/espeakup 725 directory in your path. Either /usr/bin or /usr/local/bin is a good 1123 it isn't, the recommended places to put it are /usr/local/bin or 1124 /usr/bin. This script can be run by any user, so it does not require
|
/drivers/xen/ |
D | Kconfig | 54 …SUBSYSTEM=="memory", ACTION=="add", RUN+="/bin/sh -c '[ -f /sys$devpath/state ] && echo online > /…
|
/drivers/net/wireless/mwifiex/ |
D | README | 22 a) Copy sd8787.bin to /lib/firmware/mrvl/ directory,
|
/drivers/net/wireless/brcm80211/brcmfmac/ |
D | dhd_sdio.c | 644 const char *bin; member 701 strlcat(sdiodev->fw_name, brcmf_fwname_data[i].bin, in brcmf_sdio_get_fwnames()
|