/linux-4.1.27/drivers/spi/ |
D | spi-xcomm.c | 36 uint16_t settings; member 46 uint16_t settings; in spi_xcomm_sync_config() local 49 settings = spi_xcomm->settings; in spi_xcomm_sync_config() 50 settings |= len << SPI_XCOMM_SETTINGS_LEN_OFFSET; in spi_xcomm_sync_config() 53 put_unaligned_be16(settings, &buf[1]); in spi_xcomm_sync_config() 74 struct spi_device *spi, struct spi_transfer *t, unsigned int *settings) in spi_xcomm_setup_transfer() argument 84 *settings |= SPI_XCOMM_SETTINGS_CLOCK_DIV_64; in spi_xcomm_setup_transfer() 86 *settings |= SPI_XCOMM_SETTINGS_CLOCK_DIV_16; in spi_xcomm_setup_transfer() 88 *settings |= SPI_XCOMM_SETTINGS_CLOCK_DIV_4; in spi_xcomm_setup_transfer() 94 *settings |= SPI_XCOMM_SETTINGS_CPOL; in spi_xcomm_setup_transfer() [all …]
|
/linux-4.1.27/drivers/media/pci/zoran/ |
D | zoran_card.c | 731 struct zoran_jpg_settings *settings, in zoran_check_jpg_settings() argument 739 ZR_DEVNAME(zr), __func__, settings->decimation, settings->HorDcm, in zoran_check_jpg_settings() 740 settings->VerDcm, settings->TmpDcm); in zoran_check_jpg_settings() 744 ZR_DEVNAME(zr), __func__, settings->img_x, settings->img_y, in zoran_check_jpg_settings() 745 settings->img_width, settings->img_height); in zoran_check_jpg_settings() 747 switch (settings->decimation) { in zoran_check_jpg_settings() 750 settings->HorDcm = 1; in zoran_check_jpg_settings() 751 settings->VerDcm = 1; in zoran_check_jpg_settings() 752 settings->TmpDcm = 1; in zoran_check_jpg_settings() 753 settings->field_per_buff = 2; in zoran_check_jpg_settings() [all …]
|
D | zoran_driver.c | 168 zoran_v4l2_calc_bufsize (struct zoran_jpg_settings *settings) in zoran_v4l2_calc_bufsize() argument 170 __u8 div = settings->VerDcm * settings->HorDcm * settings->TmpDcm; in zoran_v4l2_calc_bufsize() 1680 struct zoran_jpg_settings settings; in zoran_try_fmt_vid_out() local 1687 settings = fh->jpg_settings; in zoran_try_fmt_vid_out() 1691 settings.TmpDcm = 1; in zoran_try_fmt_vid_out() 1693 settings.TmpDcm = 2; in zoran_try_fmt_vid_out() 1694 settings.decimation = 0; in zoran_try_fmt_vid_out() 1696 settings.VerDcm = 2; in zoran_try_fmt_vid_out() 1698 settings.VerDcm = 1; in zoran_try_fmt_vid_out() 1700 settings.HorDcm = 4; in zoran_try_fmt_vid_out() [all …]
|
D | zoran_card.h | 47 struct zoran_jpg_settings *settings,
|
/linux-4.1.27/drivers/cpufreq/ |
D | sa1100-cpufreq.c | 131 struct sa1100_dram_regs *settings = sa1100_dram_settings; in sa1100_update_dram_timings() local 134 while (settings->speed != 0) { in sa1100_update_dram_timings() 135 if (new_speed == settings->speed) in sa1100_update_dram_timings() 138 settings++; in sa1100_update_dram_timings() 141 if (settings->speed == 0) { in sa1100_update_dram_timings() 158 MDCAS2 = settings->mdcas2; in sa1100_update_dram_timings() 159 MDCAS1 = settings->mdcas1; in sa1100_update_dram_timings() 160 MDCAS0 = settings->mdcas0; in sa1100_update_dram_timings() 161 MDCNFG = settings->mdcnfg; in sa1100_update_dram_timings() 173 MDCAS0 = settings->mdcas0; in sa1100_update_dram_timings() [all …]
|
/linux-4.1.27/net/irda/ircomm/ |
D | ircomm_param.c | 167 param->pv.i = self->settings.service_type; in ircomm_param_service_type() 184 self->settings.service_type = IRCOMM_CENTRONICS; in ircomm_param_service_type() 186 self->settings.service_type = IRCOMM_9_WIRE; in ircomm_param_service_type() 188 self->settings.service_type = IRCOMM_3_WIRE; in ircomm_param_service_type() 190 self->settings.service_type = IRCOMM_3_WIRE_RAW; in ircomm_param_service_type() 193 self->settings.service_type); in ircomm_param_service_type() 206 (self->settings.service_type != IRCOMM_3_WIRE_RAW)) in ircomm_param_service_type() 233 self->settings.port_type = (__u8) param->pv.i; in ircomm_param_port_type() 236 self->settings.port_type); in ircomm_param_port_type() 258 strncpy(self->settings.port_name, param->pv.c, 32); in ircomm_param_port_name() [all …]
|
D | ircomm_tty_ioctl.c | 85 self->settings.data_rate = baud; in ircomm_tty_change_speed() 91 self->settings.flow_control |= IRCOMM_RTS_CTS_IN; in ircomm_tty_change_speed() 98 self->settings.flow_control &= ~IRCOMM_RTS_CTS_IN; in ircomm_tty_change_speed() 131 self->settings.data_format = cval; in ircomm_tty_change_speed() 163 self->settings.dte &= ~(IRCOMM_DTR|IRCOMM_RTS); in ircomm_tty_set_termios() 170 self->settings.dte |= IRCOMM_DTR; in ircomm_tty_set_termios() 173 self->settings.dte |= IRCOMM_RTS; in ircomm_tty_set_termios() 201 result = ((self->settings.dte & IRCOMM_RTS) ? TIOCM_RTS : 0) in ircomm_tty_tiocmget() 202 | ((self->settings.dte & IRCOMM_DTR) ? TIOCM_DTR : 0) in ircomm_tty_tiocmget() 203 | ((self->settings.dce & IRCOMM_CD) ? TIOCM_CAR : 0) in ircomm_tty_tiocmget() [all …]
|
D | ircomm_tty.c | 118 self->settings.dte |= IRCOMM_RTS | IRCOMM_DTR; in ircomm_port_raise_dtr_rts() 120 self->settings.dte &= ~(IRCOMM_RTS | IRCOMM_DTR); in ircomm_port_raise_dtr_rts() 129 return self->settings.dce & IRCOMM_CD; in ircomm_port_carrier_raised() 477 self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */ in ircomm_tty_open() 479 self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */ in ircomm_tty_open() 484 self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */ in ircomm_tty_open() 839 self->settings.dte &= ~IRCOMM_RTS; in ircomm_tty_throttle() 840 self->settings.dte |= IRCOMM_DELTA_RTS; in ircomm_tty_throttle() 869 self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS); in ircomm_tty_unthrottle() 1027 status = self->settings.dce; in ircomm_tty_check_modem_status() [all …]
|
D | ircomm_tty_attach.c | 195 memset(&self->settings, 0, sizeof(struct ircomm_params)); in ircomm_tty_detach_cable() 309 self->settings.data_rate); in ircomm_tty_send_initial_parameters() 310 if (!self->settings.data_rate) in ircomm_tty_send_initial_parameters() 311 self->settings.data_rate = 9600; in ircomm_tty_send_initial_parameters() 313 self->settings.data_format); in ircomm_tty_send_initial_parameters() 314 if (!self->settings.data_format) in ircomm_tty_send_initial_parameters() 315 self->settings.data_format = IRCOMM_WSIZE_8; /* 8N1 */ in ircomm_tty_send_initial_parameters() 318 self->settings.flow_control); in ircomm_tty_send_initial_parameters() 322 self->settings.dte = IRCOMM_DTR | IRCOMM_RTS; in ircomm_tty_send_initial_parameters() 331 if (self->settings.service_type == IRCOMM_3_WIRE) { in ircomm_tty_send_initial_parameters() [all …]
|
/linux-4.1.27/drivers/hid/ |
D | hid-roccat-kone.c | 98 static void kone_set_settings_checksum(struct kone_settings *settings) in kone_set_settings_checksum() argument 101 unsigned char *address = (unsigned char *)settings; in kone_set_settings_checksum() 106 settings->checksum = cpu_to_le16(checksum); in kone_set_settings_checksum() 164 struct kone_settings const *settings) in kone_set_settings() argument 169 settings, sizeof(struct kone_settings)); in kone_set_settings() 283 memcpy(buf, ((char const *)&kone->settings) + off, count); in kone_sysfs_read_settings() 308 difference = memcmp(buf, &kone->settings, sizeof(struct kone_settings)); in kone_sysfs_write_settings() 317 old_profile = kone->settings.startup_profile; in kone_sysfs_write_settings() 318 memcpy(&kone->settings, buf, sizeof(struct kone_settings)); in kone_sysfs_write_settings() 320 kone_profile_activated(kone, kone->settings.startup_profile); in kone_sysfs_write_settings() [all …]
|
D | hid-roccat-pyra.c | 82 struct pyra_settings const *settings) in pyra_set_settings() argument 85 PYRA_COMMAND_SETTINGS, settings, in pyra_set_settings() 257 struct pyra_settings const *settings; in pyra_sysfs_write_settings() local 262 settings = (struct pyra_settings const *)buf; in pyra_sysfs_write_settings() 263 if (settings->startup_profile >= ARRAY_SIZE(pyra->profile_settings)) in pyra_sysfs_write_settings() 268 retval = pyra_set_settings(usb_dev, settings); in pyra_sysfs_write_settings() 274 profile_activated(pyra, settings->startup_profile); in pyra_sysfs_write_settings() 277 roccat_report.value = settings->startup_profile + 1; in pyra_sysfs_write_settings() 286 PYRA_SYSFS_R(settings, SETTINGS); 288 __BIN_ATTR(settings, (S_IWUSR | S_IRUGO), [all …]
|
D | hid-roccat-kone.h | 215 struct kone_settings settings; member
|
/linux-4.1.27/drivers/pinctrl/mvebu/ |
D | pinctrl-mvebu.c | 42 struct mvebu_mpp_ctrl_setting *settings; member 90 if (config == grp->settings[n].val) { in mvebu_pinctrl_find_setting_by_val() 92 grp->settings[n].variant)) in mvebu_pinctrl_find_setting_by_val() 93 return &grp->settings[n]; in mvebu_pinctrl_find_setting_by_val() 105 if (strcmp(name, grp->settings[n].name) == 0) { in mvebu_pinctrl_find_setting_by_name() 107 grp->settings[n].variant)) in mvebu_pinctrl_find_setting_by_name() 108 return &grp->settings[n]; in mvebu_pinctrl_find_setting_by_name() 119 if (grp->settings[n].flags & in mvebu_pinctrl_find_gpio_setting() 122 grp->settings[n].variant)) in mvebu_pinctrl_find_gpio_setting() 123 return &grp->settings[n]; in mvebu_pinctrl_find_gpio_setting() [all …]
|
D | pinctrl-mvebu.h | 89 struct mvebu_mpp_ctrl_setting *settings; member 163 .settings = (struct mvebu_mpp_ctrl_setting[]){ \
|
/linux-4.1.27/drivers/net/wan/ |
D | hdlc_fr.c | 138 fr_proto settings; member 353 if (state(hdlc)->settings.lmi == LMI_NONE) in pvc_open() 370 if (state(hdlc)->settings.lmi == LMI_NONE) in pvc_close() 373 if (state(hdlc)->settings.dce) { in pvc_close() 474 int lmi = state(hdlc)->settings.lmi; in fr_lmi_send() 475 int dce = state(hdlc)->settings.dce; in fr_lmi_send() 578 if (state(hdlc)->settings.lmi == LMI_NONE) { in fr_set_link_state() 592 if (!state(hdlc)->settings.dce) in fr_set_link_state() 607 if (state(hdlc)->settings.dce) { in fr_timer() 610 state(hdlc)->settings.t392 * HZ); in fr_timer() [all …]
|
D | hdlc_cisco.c | 54 cisco_proto settings; member 268 time_after(jiffies, st->last_poll + st->settings.timeout * HZ)) { in cisco_timer() 278 st->timer.expires = jiffies + st->settings.interval * HZ; in cisco_timer() 350 if (copy_to_user(cisco_s, &state(hdlc)->settings, size)) in cisco_ioctl() 377 memcpy(&state(hdlc)->settings, &new_settings, size); in cisco_ioctl()
|
D | c101.c | 64 sync_serial_settings settings; member 158 switch(port->settings.clock_type) { in c101_set_iface() 254 if (copy_to_user(line, &port->settings, size)) in c101_ioctl() 274 memcpy(&port->settings, &new_line, size); /* Update settings */ in c101_ioctl() 380 card->settings.clock_type = CLOCK_EXT; in c101_run()
|
D | pci200syn.c | 72 sync_serial_settings settings; member 129 switch(port->settings.clock_type) { in pci200_set_iface() 209 if (copy_to_user(line, &port->settings, size)) in pci200_ioctl() 230 memcpy(&port->settings, &new_line, size); /* Update settings */ in pci200_ioctl() 398 port->settings.clock_type = CLOCK_EXT; in pci200_pci_init_one()
|
D | dscc4.c | 238 sync_serial_settings settings; member 996 sync_serial_settings *settings = &dpriv->settings; in dscc4_loopback_check() local 998 if (settings->loopback && (settings->clock_type != CLOCK_INT)) { in dscc4_loopback_check() 1313 const size_t size = sizeof(dpriv->settings); in dscc4_ioctl() 1329 if (copy_to_user(line, &dpriv->settings, size)) in dscc4_ioctl() 1341 if (copy_from_user(&dpriv->settings, line, size)) in dscc4_ioctl() 1371 sync_serial_settings *settings = &dpriv->settings; in dscc4_clock_setting() local 1375 bps = settings->clock_rate; in dscc4_clock_setting() 1381 if (settings->clock_rate != bps) { in dscc4_clock_setting() 1383 dev->name, settings->clock_rate, bps); in dscc4_clock_setting() [all …]
|
D | pc300too.c | 84 sync_serial_settings settings; member 130 switch(port->settings.clock_type) { in pc300_set_iface() 217 if (copy_to_user(line, &port->settings, size)) in pc300_ioctl() 255 memcpy(&port->settings, &new_line, size); /* Update settings */ in pc300_ioctl() 458 port->settings.clock_type = CLOCK_EXT; in pc300_pci_init_one()
|
D | n2.c | 101 sync_serial_settings settings; member 176 switch(port->settings.clock_type) { in n2_set_iface() 272 if (copy_to_user(line, &port->settings, size)) in n2_ioctl() 292 memcpy(&port->settings, &new_line, size); /* Update settings */ in n2_ioctl() 473 port->settings.clock_type = CLOCK_EXT; in n2_run()
|
D | hd64572.c | 378 if (port->settings.clock_rate > 0) { in sca_set_port() 385 tmc = CLOCK_BASE / brv / port->settings.clock_rate; in sca_set_port() 395 port->settings.clock_rate = CLOCK_BASE / brv / tmc; in sca_set_port() 399 port->settings.clock_rate = CLOCK_BASE / (256 * 512); in sca_set_port() 414 if (port->settings.loopback) in sca_set_port() 439 if (port->settings.loopback) in sca_open()
|
D | hd64570.c | 415 if (port->settings.clock_rate > 0) { in sca_set_port() 422 tmc = CLOCK_BASE / brv / port->settings.clock_rate; in sca_set_port() 432 port->settings.clock_rate = CLOCK_BASE / brv / tmc; in sca_set_port() 436 port->settings.clock_rate = CLOCK_BASE / (256 * 512); in sca_set_port() 450 if (port->settings.loopback) in sca_set_port() 475 if (port->settings.loopback) in sca_open()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-driver-hid-roccat-pyra | 13 press of a button. A profile is split in settings and buttons. 17 settings back to the mouse. The data has to be 13 bytes long. 29 press of a button. A profile is split in settings and buttons. 40 …onfig num>.<interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/pyra/roccatpyra<minor>/settings 43 Description: When read, this file returns the settings stored in the mouse. 46 When written, this file lets write settings back to the mouse.
|
D | sysfs-driver-hid-roccat-savu | 5 press of a button. A profile is split into general settings and 6 button settings. buttons holds informations about button layout. 28 press of a button. A profile is split into general settings and 29 button settings. profile holds informations like resolution, sensitivity 32 settings back to the mouse. The data has to be 43 bytes long.
|
D | sysfs-driver-hid-roccat-kovaplus | 24 press of a button. A profile is split in settings and buttons. 39 press of a button. A profile is split in settings and buttons. 43 settings back to the mouse. The data has to be 16 bytes long.
|
D | sysfs-driver-hid-roccat-lua | 4 Description: When written, cpi, button and light settings can be configured.
|
D | sysfs-driver-hid-multitouch | 6 When read, this attribute returns the current settings (see
|
D | sysfs-driver-hid-roccat-koneplus | 35 press of a button. A profile is split in settings and buttons. 50 press of a button. A profile is split in settings and buttons. 54 settings back to the mouse. The data has to be 43 bytes long.
|
D | sysfs-driver-hid-roccat-kone | 55 …onfig num>.<interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/kone/roccatkone<minor>/settings 58 Description: When read, this file returns the settings stored in the mouse. 61 When written, this file lets write settings back to the mouse.
|
D | sysfs-driver-hid-roccat-konepure | 44 press of a button. A profile is split in settings and buttons. 59 press of a button. A profile is split in settings and buttons. 63 settings back to the mouse. The data has to be 31 bytes long.
|
D | sysfs-class-led | 8 non-zero brightness settings. The value is between 0 and
|
D | debugfs-driver-genwqe | 76 The driver ensures that the settings are done just before
|
D | sysfs-driver-hid-roccat-ryos | 86 Profile index for which this settings occur is included in 143 light settings.
|
D | sysfs-bus-fcoe | 11 per-port settings and finally write to the fcoe_ctlr_device's
|
/linux-4.1.27/drivers/isdn/hisax/ |
D | Kconfig | 98 non-standard IRQ/port/shmem settings. 108 non-standard IRQ/port settings. 132 non-standard IRQ/port settings. 155 non-standard IRQ/port settings. 165 non-standard IRQ/port settings. 175 non-standard IRQ/port settings. 186 non-standard IRQ/port settings. 196 non-standard IRQ/port settings. 207 non-standard IRQ/port settings. 216 non-standard IRQ/port settings. [all …]
|
/linux-4.1.27/Documentation/misc-devices/ |
D | ad525x_dpot.txt | 6 work with the immediate resistance settings as well as update the saved startup 7 settings. Access to the factory programmed tolerance is also provided, but 8 interpretation of this settings is required by the end application according to 22 The tolerance files are the read-only factory programmed tolerance settings
|
/linux-4.1.27/drivers/powercap/ |
D | Kconfig | 9 capping settings to user space in a consistent way. Usually, it consists 10 of multiple control types that determine which settings may be exposed and 27 In RAPL, the platform level settings are divided into domains for
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | da9063.txt | 17 modified to match the chip's OTP settings). 25 - regulators : This node defines the settings for the LDOs and BUCKs. The 50 - rtc : This node defines settings for the Real-Time Clock associated with 54 - watchdog : This node defines settings for the Watchdog timer associated
|
D | max8998.txt | 90 /* Buck 1 DVS settings */ 97 /* Buck 2 DVS settings */
|
D | s2mpa01.txt | 37 The following BUCKs share ramp settings:
|
/linux-4.1.27/drivers/net/phy/ |
D | phy.c | 139 static const struct phy_setting settings[] = { variable 197 #define MAX_NUM_SETTINGS ARRAY_SIZE(settings) 213 while (idx < ARRAY_SIZE(settings) && in phy_find_setting() 214 (settings[idx].speed != speed || settings[idx].duplex != duplex)) in phy_find_setting() 232 while (idx < MAX_NUM_SETTINGS && !(settings[idx].setting & features)) in phy_find_valid() 253 return settings[idx].speed == speed && settings[idx].duplex == duplex && in phy_check_valid() 254 (settings[idx].setting & features); in phy_check_valid() 277 phydev->speed = settings[idx].speed; in phy_sanitize_settings() 278 phydev->duplex = settings[idx].duplex; in phy_sanitize_settings()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/tegra/ |
D | nvidia,tegra20-emc.txt | 14 Child device nodes describe the memory settings for different configurations and clock rates. 29 next level of nodes below the emc table are used to specify which settings 30 apply for which ram-code settings. 45 This is a table containing the EMC register settings for the various 59 early boot by selecting one out of possible 4 memory settings based
|
/linux-4.1.27/drivers/iio/adc/ |
D | ad7923.c | 63 unsigned int settings; member 142 st->settings; in ad7923_update_scan_mode() 198 st->settings; in ad7923_scan_direct() 219 if (!(st->settings & AD7923_RANGE)) in ad7923_get_range() 285 st->settings = AD7923_CODING | AD7923_RANGE | in ad7923_probe()
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/4xx/ |
D | ndfc.txt | 9 - bank-settings : NDFC bank configuration register value (default 0). 20 bank-settings = <0x80002222>;
|
/linux-4.1.27/drivers/block/ |
D | pktcdvd.c | 111 return (sector + pd->offset) & ~(sector_t)(pd->settings.size - 1); in get_zone() 609 pkt = pkt_alloc_packet_data(pd->settings.size >> 2); in pkt_grow_pktlist() 925 if ((pd->settings.size << 9) / CD_FRAMESIZE in pkt_set_segment_merging() 932 } else if ((pd->settings.size << 9) / PAGE_SIZE in pkt_set_segment_merging() 1249 pd->current_sector = zone + pd->settings.size; in pkt_handle_queue() 1251 BUG_ON(pkt->frames != pd->settings.size >> 2); in pkt_handle_queue() 1561 pd->settings.fp ? "Fixed" : "Variable", in pkt_print_settings() 1562 pd->settings.size >> 2, in pkt_print_settings() 1563 pd->settings.block_mode == 8 ? '1' : '2'); in pkt_print_settings() 1721 wp->fp = pd->settings.fp; in pkt_set_write_settings() [all …]
|
/linux-4.1.27/drivers/pci/pcie/aer/ |
D | Kconfig | 20 bool "PCI Express ECRC settings control" 23 Used to override firmware/bios settings for PCI Express ECRC
|
/linux-4.1.27/Documentation/ABI/obsolete/ |
D | sysfs-driver-hid-roccat-pyra | 25 Please use binary attribute "settings" which provides this information. 44 press of a button. A profile is split in settings and buttons. 56 press of a button. A profile is split in settings and buttons. 59 When read, these files return the respective profile settings. 72 Please use binary attribute "settings" which provides this information.
|
D | sysfs-driver-hid-roccat-koneplus | 29 press of a button. A profile is split in settings and buttons. 41 press of a button. A profile is split in settings and buttons. 44 When read, these files return the respective profile settings.
|
D | sysfs-driver-hid-roccat-kovaplus | 47 press of a button. A profile is split in settings and buttons. 59 press of a button. A profile is split in settings and buttons. 62 When read, these files return the respective profile settings.
|
/linux-4.1.27/drivers/usb/serial/ |
D | kl5kusb105.c | 130 struct klsi_105_port_settings *settings) in klsi_105_chg_port_settings() argument 140 settings, in klsi_105_chg_port_settings() 148 settings->pktlen, settings->baudrate, settings->databits, in klsi_105_chg_port_settings() 149 settings->unknown1, settings->unknown2); in klsi_105_chg_port_settings()
|
/linux-4.1.27/drivers/edac/ |
D | highbank_mc_edac.c | 159 const struct hb_mc_settings *settings; in highbank_mc_probe() local 213 settings = id->data; in highbank_mc_probe() 214 drvdata->mc_err_base = base + settings->err_offset; in highbank_mc_probe() 215 drvdata->mc_int_base = base + settings->int_offset; in highbank_mc_probe()
|
/linux-4.1.27/Documentation/sound/oss/ |
D | WaveArtist | 6 nn30 read registers nn, where nn = 00 - 09 for mixer settings 9 rr32 write the mixer settings in pairs, where rr = nn/2 10 xx33 reset all settings to default
|
D | mwave | 97 REM If hardware settings are changed, please change this line as well. 169 problem with the SB1.5 (CD sound) or SBPRO (Mixers) settings. No one knows why
|
D | README.OSS | 289 software selectable IRQ and DMA settings. If the (power on default) values 359 work now. "Proper" means that I/O, IRQ and DMA settings are the same as in 360 DOS. The hard part is to find which settings were used. See the documentation of 644 configure the driver use I/O, IRQ and DMA settings 657 the driver to use I/O, IRQ and DMA settings which are known to work. 659 Using different settings is possible but not recommended since it may cause 694 settings. If sound driver is configured to use the same settings, everything 887 the same settings with DOS/Windows and Linux is recommended. Using 899 DMA settings. Since the possible/default settings have changed between various 948 - If you use the same I/O, IRQ and DMA settings in Linux, the [all …]
|
D | ALS | 32 If isapnptools is used to wake up the sound card (as in 2.2.x), the settings
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | tc90522.c | 522 struct dvb_frontend_tune_settings *settings) in tc90522_get_tune_settings() argument 525 settings->min_delay_ms = 250; in tc90522_get_tune_settings() 526 settings->step_size = 1000; in tc90522_get_tune_settings() 527 settings->max_drift = settings->step_size * 2; in tc90522_get_tune_settings() 529 settings->min_delay_ms = 400; in tc90522_get_tune_settings() 530 settings->step_size = 142857; in tc90522_get_tune_settings() 531 settings->max_drift = settings->step_size; in tc90522_get_tune_settings()
|
D | as102_fe.c | 302 struct dvb_frontend_tune_settings *settings) { in as102_fe_get_tune_settings() argument 304 settings->min_delay_ms = 1000; in as102_fe_get_tune_settings()
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | fsl,imx-pinctrl.txt | 7 different PAD settings (like pull up, keeper, etc) the IOMUXC controls 8 also the PAD settings parameters. 17 mode) this pin can work on and the 'config' configures various pad settings 73 /* shared pinctrl settings */
|
D | atmel,at91-pinctrl.txt | 7 different PAD settings (like pull up, keeper, etc) the contoller controls 8 also the PAD settings parameters. 17 mode) this pin can work on and the 'config' configures various pad settings 133 /* shared pinctrl settings */
|
D | fsl,imx51-pinctrl.txt | 12 config settings.
|
D | fsl,imx6q-pinctrl.txt | 12 config settings.
|
D | fsl,imx53-pinctrl.txt | 12 config settings.
|
D | fsl,imx35-pinctrl.txt | 12 config settings.
|
D | fsl,imx6dl-pinctrl.txt | 12 config settings.
|
D | fsl,imx6sl-pinctrl.txt | 12 config settings.
|
D | fsl,imx6sx-pinctrl.txt | 13 Reference Manual for detailed CONFIG settings.
|
D | fsl,vf610-pinctrl.txt | 12 datasheet for the valid pad config settings.
|
D | rockchip,pinctrl.txt | 16 settings such as pull-up, etc.
|
/linux-4.1.27/arch/nios2/platform/ |
D | Kconfig.platform | 3 comment "Memory settings" 96 comment "Cache settings" 99 bool "Custom cache settings" 101 This option allows you to tweak the cache settings used during early
|
/linux-4.1.27/Documentation/usb/ |
D | iuu_phoenix.txt | 42 - clockmode will provide 3 different base settings commonly adopted by 71 Don't worry about the serial settings, the serial emulation 74 use this settings to deduce de boost but is that feature
|
D | linux.inf | 50 ; Optional registry settings. You can modify as needed.
|
/linux-4.1.27/arch/arm/mach-pxa/ |
D | sleep.S | 54 @ prepare SDRAM refresh settings 95 @ prepare SDRAM refresh settings 108 @ as the system will restore with the original speed settings
|
/linux-4.1.27/drivers/hwmon/ |
D | abituguru3.c | 194 u8 settings[48][3]; member 853 value = data->settings[sensor->port][attr->nr]; in show_value() 890 (!attr->nr || (data->settings[port][0] & attr->nr))) in show_alarm() 902 if (data->settings[data->sensors[attr->index].port][0] & attr->nr) in show_mask() 1116 data->settings[i], 3) != 3) in abituguru3_update_device() 1129 data->settings[32 + i], 2) != 2) in abituguru3_update_device()
|
/linux-4.1.27/Documentation/devicetree/bindings/media/ |
D | rcar_vin.txt | 22 The per-board settings: 27 These settings are used to work out video input format and widths
|
D | st-rc.txt | 18 - pinctrl-names, pinctrl-0: the pincontrol settings to configure muxing
|
/linux-4.1.27/Documentation/scsi/ |
D | tmscsim.txt | 40 module parameters (chapter 5) are ignored! However, you can change settings 142 the attached devices and their settings. 161 Note that the settings MaxID and MaxLUN are not zero- but one-based, which 196 (1) Change driver settings: 205 (2) Change device settings: You write a config line to the driver. The Nr 211 with the given settings (Sync, TagQ). 252 settings to see if everything changed as requested. 257 With the DC390, the driver reads its EEPROM settings and tries to use them. 258 But you may want to override the settings prior to being able to change the 261 possibility to adjust settings before you are able to write to the [all …]
|
D | dc395x.txt | 21 The driver uses the settings from the EEPROM set in the SCSI BIOS 32 ("safe") default settings. This sets:
|
D | BusLogic.txt | 95 requested and negotiated with each target device. AutoSCSI settings for 279 Default" settings that are conservative and do not allow for UltraSCSI speed 284 may be used to load "Optimum Performance" settings which allow UltraSCSI 287 the "Optimum Performance" settings are loaded. 297 When configured to factory default settings, the BT-948/958/958D will only 332 factory default settings of the BT-948/958/958D enumerate the host adapters 345 settings that are conservative and do not allow for UltraSCSI speed to be 350 used to load "Optimum Performance" settings which allow UltraSCSI speed to be 353 "Optimum Performance" settings are loaded.
|
D | ncr53c8xx.txt | 755 burst:255 get burst length from initial IO register settings. 786 irqm:1 same as initial settings (assumed BIOS settings) 852 (#x >> 4) : maximum number of successive settings of IARB if the initiator 871 burst length from BIOS settings burst:255 875 differential support from BIOS settings diff:1 876 irq mode from BIOS settings irqm:1 1196 The TYAN 1365 documentation revision 1.2 is not correct about such settings. 1372 Negotiated NCR settings 1420 Negotiated NCR settings 1466 NVRAM boot order settings can do this as well as change the order the same [all …]
|
D | in2000.txt | 141 despite the fact that the card could handle settings of 376 or 149 *********** DIP switch settings **************
|
D | qlogicfas.txt | 40 with SCSI, there are other settings which can tune the bus.
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-rt-group.txt | 12 2.1 System-wide settings 21 Fiddling with these settings can result in an unstable system, the knobs are 84 2.1 System wide settings 87 The system wide settings are configured under the /proc virtual file system: 138 Group settings are checked against the following limits in order to keep the
|
D | sched-deadline.txt | 12 4.1 System-wide settings 25 Fiddling with these settings can result in an unpredictable or even unstable 231 writable control files located in procfs (for system wide settings). 232 Notice that per-group settings (controlled through cgroupfs) are still not 248 4.1 System wide settings 251 The system wide settings are configured under the /proc virtual file system.
|
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/ |
D | msm-poweroff.txt | 6 settings.
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/tilcdc/ |
D | slave.txt | 8 - pinctrl-names, pinctrl-0: the pincontrol settings to configure
|
D | tfp410.txt | 8 - pinctrl-names, pinctrl-0: the pincontrol settings to configure
|
D | panel.txt | 26 - pinctrl-names, pinctrl-0: the pincontrol settings to configure
|
/linux-4.1.27/arch/avr32/boards/atstk1000/ |
D | Kconfig | 29 bool "Non-default STK1002/STK1003/STK1004 jumper settings" 32 default settings. If you need to use certain peripherals,
|
/linux-4.1.27/Documentation/arm/pxa/ |
D | mfp.txt | 12 Unlike the GPIO alternate function settings on PXA25x and PXA27x, a new MFP 87 same name, different meaning and settings on different processors). E.g. 194 the actual API invoked to convert these definitions into register settings and 278 Register settings on PXA3xx for a pin configuration is actually very 281 ones and the low power mode ones, to allow different settings. 284 settings on PXA2xx is a bit complicated: many registers are involved,
|
/linux-4.1.27/drivers/ide/ |
D | ide-proc.c | 292 d = drive->settings; in ide_settings_proc_show() 412 if (drive->settings) in ide_settings_proc_write() 413 setting = ide_find_setting(drive->settings, name); in ide_settings_proc_write() 650 drive->settings = driver->proc_devsets(drive); in ide_proc_register_driver() 678 drive->settings = NULL; in ide_proc_unregister_driver()
|
/linux-4.1.27/include/net/irda/ |
D | ircomm_tty.h | 69 struct ircomm_params settings; member
|
/linux-4.1.27/security/yama/ |
D | Kconfig | 7 system-wide security settings beyond regular Linux discretionary
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
D | i40e_common.c | 3196 struct i40e_filter_control_settings *settings) in i40e_validate_filter_settings() argument 3204 switch (settings->fcoe_filt_num) { in i40e_validate_filter_settings() 3212 fcoe_filt_size <<= (u32)settings->fcoe_filt_num; in i40e_validate_filter_settings() 3218 switch (settings->fcoe_cntx_num) { in i40e_validate_filter_settings() 3224 fcoe_cntx_size <<= (u32)settings->fcoe_cntx_num; in i40e_validate_filter_settings() 3231 switch (settings->pe_filt_num) { in i40e_validate_filter_settings() 3244 pe_filt_size <<= (u32)settings->pe_filt_num; in i40e_validate_filter_settings() 3250 switch (settings->pe_cntx_num) { in i40e_validate_filter_settings() 3262 pe_cntx_size <<= (u32)settings->pe_cntx_num; in i40e_validate_filter_settings() 3288 struct i40e_filter_control_settings *settings) in i40e_set_filter_control() argument [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | ps2keyb-mouse-apbps2.txt | 7 bootloader settings.
|
D | elants_i2c.txt | 14 - pinctrl-0: a phandle pointing to the pin settings for the device (see
|
D | elan_i2c.txt | 14 - pinctrl-0: a phandle pointing to the pin settings for the device (see
|
/linux-4.1.27/Documentation/x86/ |
D | pat.txt | 5 page level granularity. PAT is complementary to the MTRR settings which allows 9 such attribute settings allowed. Added flexibility comes with guidelines for 154 This list shows physical address ranges and various PAT settings used to
|
D | zero-page.txt | 3 real-mode setup code of the kernel. References/settings to it mainly
|
/linux-4.1.27/drivers/net/ethernet/intel/i40evf/ |
D | i40e_prototype.h | 85 struct i40e_filter_control_settings *settings);
|
/linux-4.1.27/drivers/pinctrl/ |
D | core.c | 701 INIT_LIST_HEAD(&state->settings); in create_state() 766 list_add_tail(&setting->node, &state->settings); in add_setting() 916 list_for_each_entry_safe(setting, n2, &state->settings, node) { in pinctrl_free() 1000 list_for_each_entry(setting, &p->state->settings, node) { in pinctrl_select_state() 1010 list_for_each_entry(setting, &state->settings, node) { in pinctrl_select_state() 1036 list_for_each_entry(setting2, &state->settings, node) { in pinctrl_select_state() 1515 list_for_each_entry(setting, &state->settings, node) { in pinctrl_show()
|
D | pinctrl-single.c | 1008 struct pcs_conf_vals **conf, unsigned long **settings) in pcs_add_conf2() argument 1021 add_setting(settings, param, value[0] >> shift); in pcs_add_conf2() 1027 struct pcs_conf_vals **conf, unsigned long **settings) in pcs_add_conf4() argument 1047 add_setting(settings, param, ret); in pcs_add_conf4() 1057 unsigned long *settings = NULL, *s = NULL; in pcs_parse_pinconf() local 1096 settings = devm_kzalloc(pcs->dev, sizeof(unsigned long) * nconfs, in pcs_parse_pinconf() 1098 if (!settings) in pcs_parse_pinconf() 1100 s = &settings[0]; in pcs_parse_pinconf() 1110 m->data.configs.configs = settings; in pcs_parse_pinconf()
|
D | core.h | 84 struct list_head settings; member
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-ismt | 18 Available bus frequency settings:
|
D | i2c-viapro | 65 If none of these show up, you should look in the BIOS for settings like
|
/linux-4.1.27/block/ |
D | Makefile | 6 blk-flush.o blk-settings.o blk-ioc.o blk-map.o \
|
/linux-4.1.27/drivers/net/wireless/ti/wl18xx/ |
D | conf.h | 67 u8 settings; member
|
/linux-4.1.27/drivers/staging/rtl8723au/os_dep/ |
D | ioctl_cfg80211.c | 2784 struct cfg80211_ap_settings *settings) in cfg80211_rtw_start_ap() argument 2790 __func__, ndev->name, settings->hidden_ssid, in cfg80211_rtw_start_ap() 2791 settings->auth_type); in cfg80211_rtw_start_ap() 2793 ret = rtw_add_beacon(adapter, settings->beacon.head, in cfg80211_rtw_start_ap() 2794 settings->beacon.head_len, settings->beacon.tail, in cfg80211_rtw_start_ap() 2795 settings->beacon.tail_len); in cfg80211_rtw_start_ap() 2798 settings->hidden_ssid; in cfg80211_rtw_start_ap() 2800 if (settings->ssid && settings->ssid_len) { in cfg80211_rtw_start_ap() 2806 memcpy(pbss_network->Ssid.ssid, (void *)settings->ssid, in cfg80211_rtw_start_ap() 2807 settings->ssid_len); in cfg80211_rtw_start_ap() [all …]
|
/linux-4.1.27/Documentation/networking/ |
D | cxgb.txt | 35 settings to achieve the highest performance during various types of network 112 includes the optimal settings for your system. 254 network settings. 291 It may be possible to work outside AMD's recommended PCI-X settings, try 293 have issues with these settings, please revert to the "safe" settings
|
D | 3c509.txt | 38 Overriding card settings 41 IRQ, and transceiver settings, although this capability shouldn't generally be 107 8 transceiver type and duplex mode taken from card's EEPROM config settings 112 full-duplex mode, no matter what the card's detected EEPROM settings might be.
|
D | tlan.txt | 93 You also need to set both speed and duplex settings when forcing 111 3. Try forcing different speed/duplex settings
|
D | phy.txt | 13 settings were chosen, and to configure what settings are allowed. 199 forced settings. 204 settings in the PHY. 262 config_aneg: Changes the speed/duplex/negotiation settings 264 read_status: Reads the current speed/duplex/negotiation settings
|
D | s2io.txt | 100 a. By default, the driver respects BIOS settings for PCI bus parameters. 121 a. By default, the driver respects BIOS settings for PCI bus parameters.
|
D | batman-adv.txt | 65 All mesh wide settings can be found in batman's own interface 183 interfaces to the kernel module settings.
|
D | e1000.txt | 51 This parameter is a bit-mask that specifies the speed and duplex settings 73 Default Value: Reads flow control settings from the EEPROM 153 NOTE: When e1000 is loaded with default settings and multiple adapters 166 RX_POLLING (NAPI) and default driver settings.
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
D | renesas,r8a7740-cpg-clocks.txt | 20 - renesas,mode: board-specific settings of the MD_CK* bits
|
D | renesas,cpg-div6-clocks.txt | 19 settings must be specified as "<0>".
|
/linux-4.1.27/net/bluetooth/ |
D | mgmt.c | 607 u32 settings = 0; in get_supported_settings() local 609 settings |= MGMT_SETTING_POWERED; in get_supported_settings() 610 settings |= MGMT_SETTING_BONDABLE; in get_supported_settings() 611 settings |= MGMT_SETTING_DEBUG_KEYS; in get_supported_settings() 612 settings |= MGMT_SETTING_CONNECTABLE; in get_supported_settings() 613 settings |= MGMT_SETTING_DISCOVERABLE; in get_supported_settings() 617 settings |= MGMT_SETTING_FAST_CONNECTABLE; in get_supported_settings() 618 settings |= MGMT_SETTING_BREDR; in get_supported_settings() 619 settings |= MGMT_SETTING_LINK_SECURITY; in get_supported_settings() 622 settings |= MGMT_SETTING_SSP; in get_supported_settings() [all …]
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | compress_offload.txt | 105 correspond to valid settings, and to minimize the risks of 113 settings, this routine returns the minimum buffer size handled by the 123 comply to the settings 126 This routines returns the actual settings used by the DSP. Changes to 127 the settings should remain the exception.
|
D | ControlNames.txt | 105 IEC958 [...] [Playback|Capture] PCM Stream /* the settings assigned to a PCM stream */
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | cfg80211.c | 3975 struct cfg80211_ap_settings *settings) in brcmf_cfg80211_start_ap() argument 3994 settings->chandef.chan->hw_value, in brcmf_cfg80211_start_ap() 3995 settings->chandef.center_freq1, settings->chandef.width, in brcmf_cfg80211_start_ap() 3996 settings->beacon_interval, settings->dtim_period); in brcmf_cfg80211_start_ap() 3998 settings->ssid, settings->ssid_len, settings->auth_type, in brcmf_cfg80211_start_ap() 3999 settings->inactivity_timeout); in brcmf_cfg80211_start_ap() 4005 country_ie = brcmf_parse_tlvs((u8 *)settings->beacon.tail, in brcmf_cfg80211_start_ap() 4006 settings->beacon.tail_len, in brcmf_cfg80211_start_ap() 4011 if (settings->ssid == NULL || settings->ssid_len == 0) { in brcmf_cfg80211_start_ap() 4014 (u8 *)&settings->beacon.head[ie_offset], in brcmf_cfg80211_start_ap() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | chipone_icn8318.txt | 15 - pinctrl-0: : a phandle pointing to the pin settings for the
|
D | edt-ft5x06.txt | 32 - pinctrl-0: a phandle pointing to the pin settings for the
|
/linux-4.1.27/Documentation/hwmon/ |
D | powr1220 | 17 includes voltage monitoring for 14 inputs as well as trim settings
|
D | w83l786ng | 19 behavior is no chip reset to preserve BIOS settings
|
D | htu21 | 38 The driver uses the default resolution settings of 12 bit for humidity and 14
|
D | sht21 | 42 The driver uses the default resolution settings of 12 bit for humidity and 14
|
D | max6650 | 56 different settings, you can set the following parameters:
|
D | abituguru3 | 61 neither is writing any of the sensor settings and writing / reading the
|
D | amc6821 | 99 different settings, you can set the following parameters:
|
D | lm87 | 34 and low alarm settings. A high limit produces an alarm when the value
|
/linux-4.1.27/include/linux/ |
D | pktcdvd.h | 168 struct packet_settings settings; member
|
/linux-4.1.27/Documentation/frv/ |
D | configuring.txt | 17 There are a number of settings in the "Processor type and features" section of 67 There are also a number of settings in the "Kernel Hacking" section of the
|
D | clock.txt | 27 Determining current and possible settings
|
/linux-4.1.27/sound/soc/codecs/ |
D | max98090.c | 1842 } settings[6]; /* One for each dmic divisor. */ member 1848 .settings = { 1859 .settings = { 1870 .settings = { 1881 .settings = { 1892 .settings = { 1965 dmic_freq = dmic_table[pclk_index].settings[micclk_index].freq; in max98090_configure_dmic() 1966 dmic_comp = dmic_table[pclk_index].settings[micclk_index].comp[i]; in max98090_configure_dmic()
|
/linux-4.1.27/arch/avr32/boards/hammerhead/ |
D | Kconfig | 27 also go through the ALSA settings to get it working.
|
/linux-4.1.27/Documentation/ |
D | email-clients.txt | 180 It should work with default settings. 224 You may have to pass additional flags or change the settings of your 227 /usr/bin) to the text editor field in "external editor" settings. If you 233 - Edit your Thunderbird config settings so that it won't use format=flowed.
|
D | xz.txt | 76 so don't hesitate to use custom settings. Example: 91 the fastest settings, so it isn't clear if LZMA2 encoder is wanted
|
/linux-4.1.27/Documentation/ioctl/ |
D | hdio.txt | 23 HDIO_GET_KEEPSETTINGS get keep-settings-on-reset flag 44 HDIO_SET_KEEPSETTINGS keep ioctl settings on reset 264 HDIO_GET_KEEPSETTINGS get keep-settings-on-reset flag 274 The value of the current "keep settings" flag 278 When set, indicates that kernel should restore settings 283 HDIO_SET_KEEPSETTINGS keep ioctl settings on reset 425 The value of the current acoustic settings 1006 New value for drive acoustic settings
|
/linux-4.1.27/Documentation/memory-devices/ |
D | ti-emif.txt | 29 parameters and other settings during frequency, voltage and
|
/linux-4.1.27/Documentation/devicetree/bindings/iio/ |
D | st-sensors.txt | 20 Sensors may also have applicable pin control settings, those use the
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-mpc.txt | 20 - fsl,preserve-clocking : boolean; if defined, the clock settings
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | mpc8548cds_32b.dts | 81 * mpc8548cds.dtsi must be last to ensure board_pci0 overrides pci0 settings
|
D | mpc8572ds.dts | 85 * mpc8572ds.dtsi must be last to ensure board_pci0 overrides pci0 settings
|
D | p2020ds.dts | 84 * p2020ds.dtsi must be last to ensure board_pci0 overrides pci0 settings
|
D | mpc8548cds_36b.dts | 81 * mpc8548cds.dtsi must be last to ensure board_pci0 overrides pci0 settings
|
D | mpc8572ds_36b.dts | 85 * mpc8572ds.dtsi must be last to ensure board_pci0 overrides pci0 settings
|
D | mpc8544ds.dts | 102 * mpc8544ds.dtsi must be last to ensure board_pci3 overrides pci3 settings
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | README.WINVIEW | 26 To use the driver I use the following options, the tuner and pll settings might
|
/linux-4.1.27/arch/mips/txx9/ |
D | Kconfig | 120 bool "Keep firmware settings"
|
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/ |
D | brcm,bcm7038-l1-intc.txt | 18 - No polarity/level/edge settings
|
/linux-4.1.27/Documentation/ide/ |
D | ChangeLog.ide-tape.1995-2002 | 181 * via /proc/ide/hdc/settings 183 * can be changed using /proc/ide/hdx/settings 230 * to /proc/ide/hd?/settings. 255 * Set the minimum /proc/ide/hd?/settings values for "pipeline",
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | cs42l56.txt | 40 0 = Adapt to Volume Mode. Voltage level determined by the sum of the relevant volume settings.
|
D | fsl,esai.txt | 37 means all the settings for Receiving would be
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | exynos7-decon.txt | 37 - display-timings: timing settings for DECON, as described in document [1].
|
D | samsung-fimd.txt | 44 - display-timings: timing settings for FIMD, as described in document [1].
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | s3c2416-pinctrl.dtsi | 2 * Samsung S3C2416 pinctrl settings
|
D | ste-href-ab8505.dtsi | 17 /* Hog a few default settings */
|
D | imx6qdl-microsom-ar8035.dtsi | 91 * Use the GPIO settings to avoid changing the
|
/linux-4.1.27/Documentation/arm/ |
D | CCN.txt | 34 not require any other settings.
|
/linux-4.1.27/net/wireless/ |
D | trace.h | 475 struct cfg80211_ap_settings *settings), 476 TP_ARGS(wiphy, netdev, settings), 493 CHAN_DEF_ASSIGN(&settings->chandef); 494 __entry->beacon_interval = settings->beacon_interval; 495 __entry->dtim_period = settings->dtim_period; 496 __entry->hidden_ssid = settings->hidden_ssid; 497 __entry->wpa_ver = settings->crypto.wpa_versions; 498 __entry->privacy = settings->privacy; 499 __entry->auth_type = settings->auth_type; 500 __entry->inactivity_timeout = settings->inactivity_timeout; [all …]
|
/linux-4.1.27/net/mac80211/ |
D | mesh.c | 686 csa->settings.chandef.chan->center_freq); in ieee80211_mesh_build_beacon() 687 bcn->csa_current_counter = csa->settings.count; in ieee80211_mesh_build_beacon() 689 *pos++ = csa->settings.count; in ieee80211_mesh_build_beacon() 698 *pos++ |= csa->settings.block_tx ? in ieee80211_mesh_build_beacon() 1099 memcpy(&tmp_csa_settings->settings, csa_settings, in ieee80211_mesh_csa_beacon()
|
/linux-4.1.27/Documentation/i2c/muxes/ |
D | i2c-mux-gpio | 24 according to the settings of the GPIO pins 1..N.
|
/linux-4.1.27/Documentation/devicetree/bindings/soc/qcom/ |
D | qcom,gsbi.txt | 5 configuration settings. The mode setting will govern the input/output mode of
|
/linux-4.1.27/Documentation/leds/ |
D | leds-lp5523.txt | 54 Each channel contains led current settings.
|
D | ledtrig-oneshot.txt | 5 no clear trap points to put standard led-on and led-off settings. Using this
|
D | leds-lp5521.txt | 45 Each channel has its own led current settings.
|
D | leds-lp5562.txt | 62 Like LP5521 and LP5523/55231, LP5562 provides LED current settings.
|
D | leds-class.txt | 12 brightness support so will just be turned on for non-zero brightness settings.
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | ethernet.txt | 24 and is useful for determining certain configuration settings such as
|
D | micrel-ksz90x1.txt | 7 Note that these settings are applied after any phy-specific fixup from
|
D | gpmc-eth.txt | 45 - gpmc,XXX Additional GPMC timings and settings parameters. See
|
/linux-4.1.27/Documentation/DocBook/ |
D | .kernel-api.xml.cmd | 2 …blk-core.c block/blk-core.c block/blk-map.c block/blk-sysfs.c block/blk-settings.c block/blk-exec.…
|
/linux-4.1.27/arch/blackfin/mach-bf609/ |
D | pm.c | 123 …nst bfrom_SysControl)(uint32_t action_flags, struct STRUCT_ROM_SYSCTRL *settings, void *reserved) …
|
/linux-4.1.27/arch/arm/kvm/ |
D | init.S | 78 @ settings as the non-secure TTBCR and with T0SZ == 0.
|
/linux-4.1.27/drivers/net/wireless/p54/ |
D | Kconfig | 58 for calibration, country and interface settings.
|
/linux-4.1.27/drivers/media/usb/pwc/ |
D | philips.txt | 43 When you load the module you can set some default settings for the 110 This settings takes 2 integers, that define the on/off time for the LED 228 settings after open() with the Video4Linux ioctl() calls. The default of
|
/linux-4.1.27/Documentation/pcmcia/ |
D | driver-changes.txt | 5 automatically, though the driver may still override the settings 16 as it mirrors pcmcia_disable_device(). Configuration settings are now
|
/linux-4.1.27/Documentation/i2c/ |
D | i2c-stub | 54 Optional bank settings. They tell which bits in which register
|
/linux-4.1.27/Documentation/video4linux/ |
D | cafe_ccic | 30 camera settings.
|
D | cpia2_overview.txt | 18 values is the only way to control the camera. Some settings are
|
D | README.davinci-vpbe | 47 board specific settings (specified in board-xxx-evm.c). This allows
|
D | omap3isp.txt | 53 In general, the settings given to the OMAP 3 ISP take effect at the beginning 56 is run one frame at a time. Applying the settings is done between the frames.
|
/linux-4.1.27/arch/unicore32/kernel/ |
D | sleep.S | 99 @ prepare DDR2 refresh settings
|
/linux-4.1.27/tools/perf/Documentation/ |
D | android.txt | 68 IV. Environment settings for running perf
|
/linux-4.1.27/Documentation/devicetree/bindings/mtd/ |
D | gpmc-nor.txt | 30 - gpmc,XXX Additional GPMC timings and settings parameters. See
|
/linux-4.1.27/Documentation/EDID/ |
D | HOWTO.txt | 32 replace the settings with your own data and add a new target to the
|
/linux-4.1.27/Documentation/serial/ |
D | rocket.txt | 107 software control. The DIP switch settings for the I/O address must be 115 the only place where the DIP switch settings should differ between the
|
D | tty.txt | 140 settings have changed. New settings are in 141 tty->termios. Previous settings should be passed in
|
/linux-4.1.27/Documentation/vm/ |
D | page_migration | 99 4. The new page is prepped with some settings from the old page so that 100 accesses to the new page will discover a page with the correct settings.
|
/linux-4.1.27/drivers/memory/ |
D | Kconfig | 41 parameters and other settings during frequency, voltage and
|
/linux-4.1.27/Documentation/virtual/kvm/devices/ |
D | vm.txt | 6 struct kvm_device_attr as other devices, but targets VM-wide settings
|
/linux-4.1.27/Documentation/wimax/ |
D | README.wimax | 48 debug settings.
|
/linux-4.1.27/drivers/media/dvb-core/ |
D | dvb_frontend.h | 288 int (*get_tune_settings)(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* settings);
|
/linux-4.1.27/Documentation/devicetree/bindings/leds/ |
D | leds-lp55xx.txt | 14 Each child has own specific current settings
|
/linux-4.1.27/Documentation/devicetree/bindings/drm/imx/ |
D | ldb.txt | 38 - pinctrl-0 : a phandle pointing to LVDS pin settings on i.MX53,
|
/linux-4.1.27/Documentation/security/ |
D | Yama.txt | 49 The sysctl settings (writable only with CAP_SYS_PTRACE) are:
|
/linux-4.1.27/drivers/s390/net/ |
D | qeth_core_sys.c | 563 rc = sprintf(buf, (sw_info.settings & QETH_SWITCH_FORW_802_1 ? in qeth_dev_switch_attrs_show() 567 (sw_info.settings & QETH_SWITCH_FORW_REFL_RELAY ? in qeth_dev_switch_attrs_show()
|
/linux-4.1.27/Documentation/PCI/ |
D | PCIEBUS-HOWTO.txt | 208 other service driver's configuration settings. 217 configuration settings.
|
/linux-4.1.27/Documentation/isdn/ |
D | README.audio | 28 AT+Vxx=? Show possible settings.
|