/linux-4.4.14/drivers/s390/net/ |
D | qeth_l2_sys.c | 29 &card->options.sbp.role, &state); in qeth_bridge_port_role_state_show() 43 switch (card->options.sbp.role) { in qeth_bridge_port_role_state_show() 55 card->options.sbp.role, state); in qeth_bridge_port_role_state_show() 74 enum qeth_sbp_roles role; in qeth_bridge_port_role_store() local 79 role = QETH_SBP_ROLE_PRIMARY; in qeth_bridge_port_role_store() 81 role = QETH_SBP_ROLE_SECONDARY; in qeth_bridge_port_role_store() 83 role = QETH_SBP_ROLE_NONE; in qeth_bridge_port_role_store() 92 rc = qeth_bridgeport_setrole(card, role); in qeth_bridge_port_role_store() 94 card->options.sbp.role = role; in qeth_bridge_port_role_store() 96 card->options.sbp.role = role; in qeth_bridge_port_role_store() [all …]
|
D | qeth_l2_main.c | 741 int role; in qeth_promisc_to_bridge() local 755 role = QETH_SBP_ROLE_PRIMARY; in qeth_promisc_to_bridge() 757 role = QETH_SBP_ROLE_SECONDARY; in qeth_promisc_to_bridge() 759 role = QETH_SBP_ROLE_NONE; in qeth_promisc_to_bridge() 761 rc = qeth_bridgeport_setrole(card, role); in qeth_promisc_to_bridge() 765 card->options.sbp.role = role; in qeth_promisc_to_bridge() 1640 data->card->options.sbp.role = entry->role; in qeth_bridge_state_change_worker() 1645 (entry->role == QETH_SBP_ROLE_NONE) ? "none" : in qeth_bridge_state_change_worker() 1646 (entry->role == QETH_SBP_ROLE_PRIMARY) ? "primary" : in qeth_bridge_state_change_worker() 1647 (entry->role == QETH_SBP_ROLE_SECONDARY) ? "secondary" : in qeth_bridge_state_change_worker() [all …]
|
D | qeth_core.h | 177 enum qeth_sbp_roles role; member 953 enum qeth_sbp_roles *role, enum qeth_sbp_states *state); 954 int qeth_bridgeport_setrole(struct qeth_card *card, enum qeth_sbp_roles role);
|
D | qeth_core_mpc.h | 575 __u8 role; member
|
/linux-4.4.14/drivers/usb/chipidea/ |
D | ci.h | 209 enum ci_role role; member 255 BUG_ON(ci->role >= CI_ROLE_END || !ci->roles[ci->role]); in ci_role() 256 return ci->roles[ci->role]; in ci_role() 259 static inline int ci_role_start(struct ci_hdrc *ci, enum ci_role role) in ci_role_start() argument 263 if (role >= CI_ROLE_END) in ci_role_start() 266 if (!ci->roles[role]) in ci_role_start() 269 ret = ci->roles[role]->start(ci); in ci_role_start() 271 ci->role = role; in ci_role_start() 277 enum ci_role role = ci->role; in ci_role_stop() local 279 if (role == CI_ROLE_END) in ci_role_stop() [all …]
|
D | otg.c | 89 enum ci_role role = hw_read_otgsc(ci, OTGSC_ID) in ci_otg_role() local 93 return role; in ci_otg_role() 110 enum ci_role role = ci_otg_role(ci); in ci_handle_id_switch() local 112 if (role != ci->role) { in ci_handle_id_switch() 114 ci_role(ci)->name, ci->roles[role]->name); in ci_handle_id_switch() 118 if (role == CI_ROLE_GADGET) in ci_handle_id_switch() 123 ci_role_start(ci, role); in ci_handle_id_switch()
|
D | debug.c | 135 if (ci->role != CI_ROLE_GADGET) { in ci_qheads_show() 181 if (ci->role != CI_ROLE_GADGET) { in ci_requests_show() 308 enum ci_role role; in ci_role_write() local 315 for (role = CI_ROLE_HOST; role < CI_ROLE_END; role++) in ci_role_write() 316 if (ci->roles[role] && in ci_role_write() 317 !strncmp(buf, ci->roles[role]->name, in ci_role_write() 318 strlen(ci->roles[role]->name))) in ci_role_write() 321 if (role == CI_ROLE_END || role == ci->role) in ci_role_write() 327 ret = ci_role_start(ci, role); in ci_role_write()
|
D | Kconfig | 6 Say Y here if your system has a dual role high speed USB
|
D | core.c | 600 if (ci->role != CI_ROLE_END) in ci_irq() 1011 ci->role = ci_otg_role(ci); in ci_hdrc_probe() 1020 ci->role = CI_ROLE_GADGET; in ci_hdrc_probe() 1023 ci->role = ci->roles[CI_ROLE_HOST] in ci_hdrc_probe() 1030 if (ci->role == CI_ROLE_GADGET) in ci_hdrc_probe() 1033 ret = ci_role_start(ci, ci->role); in ci_hdrc_probe()
|
D | host.c | 198 if (ci->role == CI_ROLE_HOST && ci->hcd) in ci_hdrc_host_destroy()
|
/linux-4.4.14/arch/x86/kvm/ |
D | mmutrace.h | 13 __field(__u32, role) \ 20 __entry->role = sp->role.word; \ 29 union kvm_mmu_page_role role; \ 31 role.word = __entry->role; \ 35 __entry->gfn, role.level, \ 36 role.cr4_pae ? " pae" : "", \ 37 role.quadrant, \ 38 role.direct ? " direct" : "", \ 39 access_str[role.access], \ 40 role.invalid ? " invalid" : "", \ [all …]
|
D | mmu_audit.c | 141 slots = kvm_memslots_for_spte_role(kvm, rev_sp->role); in inspect_spte_has_rmap() 153 rmapp = __gfn_to_rmap(gfn, rev_sp->role.level, slot); in inspect_spte_has_rmap() 182 if (sp->role.level != PT_PAGE_TABLE_LEVEL) in check_mappings_rmap() 201 if (sp->role.direct || sp->unsync || sp->role.invalid) in audit_write_protection() 204 slots = kvm_memslots_for_spte_role(kvm, sp->role); in audit_write_protection() 212 sp->gfn, sp->role.word); in audit_write_protection()
|
D | mmu.c | 756 if (!sp->role.direct) in kvm_mmu_page_get_gfn() 759 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS)); in kvm_mmu_page_get_gfn() 764 if (sp->role.direct) in kvm_mmu_page_set_gfn() 793 slots = kvm_memslots_for_spte_role(kvm, sp->role); in account_shadowed() 811 slots = kvm_memslots_for_spte_role(kvm, sp->role); in unaccount_shadowed() 1052 slots = kvm_memslots_for_spte_role(kvm, sp->role); in gfn_to_rmap() 1054 return __gfn_to_rmap(gfn, sp->role.level, slot); in gfn_to_rmap() 1164 WARN_ON(page_header(__pa(sptep))->role.level == in __drop_large_spte() 1623 kvm_unmap_rmapp(vcpu->kvm, rmapp, NULL, gfn, sp->role.level, 0); in rmap_recycle() 1691 if (!sp->role.direct) in kvm_mmu_free_page() [all …]
|
D | paging_tmpl.h | 467 pte_access = sp->role.access & FNAME(gpte_access)(vcpu, gpte); in FNAME() 525 if (sp->role.level > PT_PAGE_TABLE_LEVEL) in FNAME() 528 if (sp->role.direct) in FNAME() 811 WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL); in FNAME() 814 offset = sp->role.quadrant << PT64_LEVEL_BITS; in FNAME() 933 BUG_ON(sp->role.direct); in FNAME() 958 pte_access = sp->role.access; in FNAME()
|
/linux-4.4.14/scripts/ |
D | get_maintainer.pl | 998 my $role = "unknown"; 1007 $role = $pvalue; 1012 $role = lc($role); 1013 if ($role eq "supported") { 1014 $role = "supporter"; 1015 } elsif ($role eq "maintained") { 1016 $role = "maintainer"; 1017 } elsif ($role eq "odd fixes") { 1018 $role = "odd fixer"; 1019 } elsif ($role eq "orphan") { [all …]
|
/linux-4.4.14/tools/lib/traceevent/ |
D | plugin_kvm.c | 380 union kvm_mmu_page_role role; in kvm_mmu_print_role() local 385 role.word = (int)val; in kvm_mmu_print_role() 395 role.level, in kvm_mmu_print_role() 396 role.quadrant, in kvm_mmu_print_role() 397 role.direct ? " direct" : "", in kvm_mmu_print_role() 398 access_str[role.access], in kvm_mmu_print_role() 399 role.invalid ? " invalid" : "", in kvm_mmu_print_role() 400 role.cr4_pae ? "" : "!", in kvm_mmu_print_role() 401 role.nxe ? "" : "!", in kvm_mmu_print_role() 402 role.cr0_wp ? "" : "!", in kvm_mmu_print_role() [all …]
|
/linux-4.4.14/security/selinux/ss/ |
D | context.h | 28 u32 role; member 122 dst->role = src->role; in context_cpy() 143 c->user = c->role = c->type = 0; in context_destroy() 157 (c1->role == c2->role) && in context_cmp()
|
D | policydb.c | 179 struct role_datum *role; in roles_init() local 182 role = kzalloc(sizeof(*role), GFP_KERNEL); in roles_init() 183 if (!role) in roles_init() 187 role->value = ++p->p_roles.nprim; in roles_init() 188 if (role->value != OBJECT_R_VAL) in roles_init() 196 rc = hashtab_insert(p->p_roles.table, key, role); in roles_init() 203 kfree(role); in roles_init() 370 struct role_datum *role; in role_index() local 373 role = datum; in role_index() 375 if (!role->value in role_index() [all …]
|
D | services.c | 314 val1 = scontext->role; in constraint_expr_eval() 315 val2 = tcontext->role; in constraint_expr_eval() 416 val1 = c->role; in constraint_expr_eval() 734 scontext->role != tcontext->role) { in context_struct_compute_av() 736 if (scontext->role == ra->role && in context_struct_compute_av() 737 tcontext->role == ra->new_role) in context_struct_compute_av() 1205 *scontext_len += strlen(sym_name(&policydb, SYM_ROLES, context->role - 1)) + 1; in context_struct_to_string() 1223 sym_name(&policydb, SYM_ROLES, context->role - 1), in context_struct_to_string() 1322 struct role_datum *role; in string_to_context_struct() local 1361 role = hashtab_search(pol->p_roles.table, scontextp); in string_to_context_struct() [all …]
|
D | policydb.h | 88 u32 role; /* current role */ member 107 u32 role; /* current role */ member 309 extern int policydb_role_isvalid(struct policydb *p, unsigned int role);
|
D | mls.c | 201 if (c->role == OBJECT_R_VAL) in mls_context_isvalid()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_state.c | 76 device->state.role != R_SECONDARY) { in conn_all_vols_unconf() 107 enum drbd_role role = R_UNKNOWN; in conn_highest_role() local 114 role = max_role(role, device->state.role); in conn_highest_role() 118 return role; in conn_highest_role() 241 ((os.role != R_PRIMARY && ns.role == R_PRIMARY) || in cl_wide_st_chg() 446 drbd_role_str(ns.role), in print_st() 476 if (ns.role != os.role && flags & CS_DC_ROLE) in print_state_change() 478 drbd_role_str(os.role), in print_state_change() 479 drbd_role_str(ns.role)); in print_state_change() 566 if (!nc->two_primaries && ns.role == R_PRIMARY) { in is_valid_state() [all …]
|
D | drbd_state.h | 82 unsigned role:2 ; /* 3/4 primary/secondary/unknown */ member 102 unsigned role:2 ; /* 3/4 primary/secondary/unknown */
|
D | drbd_proc.c | 287 state.role == R_SECONDARY) { in drbd_seq_show() 300 drbd_role_str(state.role), in drbd_seq_show()
|
D | drbd_nl.c | 587 mask.i = 0; mask.role = R_MASK; in drbd_set_role() 588 val.i = 0; val.role = new_role; in drbd_set_role() 1219 if (device->state.role == R_PRIMARY && new < now) in drbd_reconsider_max_bio_size() 1688 device->state.role == R_PRIMARY && device->ed_uuid && in drbd_adm_attach() 1738 !(device->state.role == R_PRIMARY && device->resource->susp_nod)) in drbd_adm_attach() 1763 if (device->state.role != R_PRIMARY && in drbd_adm_attach() 1855 if (device->state.role == R_PRIMARY) in drbd_adm_attach() 2034 if (device->state.role == R_PRIMARY && new_net_conf->discard_my_data) in _check_net_options() 2478 if (device->state.role != device->state.peer) in resync_after_online_grow() 2479 iass = (device->state.role == R_PRIMARY); in resync_after_online_grow() [all …]
|
D | Kconfig | 24 Each minor device has a role, which can be 'primary' or 'secondary'.
|
D | drbd_receiver.c | 2823 if (hg == -1 && device->state.role == R_SECONDARY) in drbd_asb_recover_1p() 2825 if (hg == 1 && device->state.role == R_PRIMARY) in drbd_asb_recover_1p() 2832 return device->state.role == R_PRIMARY ? 1 : -1; in drbd_asb_recover_1p() 2835 if (hg == -1 && device->state.role == R_PRIMARY) { in drbd_asb_recover_1p() 2841 rv2 = drbd_change_state(device, CS_VERBOSE, NS(role, R_SECONDARY)); in drbd_asb_recover_1p() 2891 rv2 = drbd_change_state(device, CS_VERBOSE, NS(role, R_SECONDARY)); in drbd_asb_recover_2p() 3173 int pcount = (device->state.role == R_PRIMARY) in drbd_sync_handshake() 3231 device->state.role == R_PRIMARY && device->state.disk >= D_CONSISTENT) { in drbd_sync_handshake() 3894 device->state.role == R_PRIMARY && in receive_uuids() 3922 device->state.role == R_PRIMARY) { in receive_uuids() [all …]
|
D | drbd_main.c | 1868 if (device->state.role != R_PRIMARY) { in drbd_open() 1896 { .role = R_SECONDARY, in drbd_set_defaults() 3395 if (device->state.role == R_PRIMARY) in __drbd_uuid_set()
|
/linux-4.4.14/net/netfilter/ |
D | nf_conntrack_proto_dccp.c | 449 ct->proto.dccp.role[IP_CT_DIR_ORIGINAL] = CT_DCCP_ROLE_CLIENT; in dccp_new() 450 ct->proto.dccp.role[IP_CT_DIR_REPLY] = CT_DCCP_ROLE_SERVER; in dccp_new() 487 enum ct_dccp_roles role; in dccp_packet() local 502 role = ct->proto.dccp.role[dir]; in dccp_packet() 504 new_state = dccp_state_table[role][type][old_state]; in dccp_packet() 509 role == CT_DCCP_ROLE_SERVER) { in dccp_packet() 512 ct->proto.dccp.role[dir] = CT_DCCP_ROLE_CLIENT; in dccp_packet() 513 ct->proto.dccp.role[!dir] = CT_DCCP_ROLE_SERVER; in dccp_packet() 535 ct->proto.dccp.role[!dir] = CT_DCCP_ROLE_CLIENT; in dccp_packet() 536 ct->proto.dccp.role[dir] = CT_DCCP_ROLE_SERVER; in dccp_packet() [all …]
|
/linux-4.4.14/drivers/media/tuners/ |
D | it913x.c | 31 u8 role:2; member 48 dev_dbg(&dev->client->dev, "role %u\n", dev->role); in it913x_init() 164 dev_dbg(&dev->client->dev, "role %u\n", dev->role); in it913x_sleep() 176 if (dev->role == IT913X_ROLE_DUAL_MASTER) in it913x_sleep() 181 dev_dbg(&dev->client->dev, "role %u, len %d\n", dev->role, len); in it913x_sleep() 228 dev->role, c->frequency, c->bandwidth_hz); in it913x_set_params() 411 dev->role = cfg->role; in it913x_probe() 433 dev->chip_ver, dev->role); in it913x_probe()
|
D | it913x.h | 51 unsigned int role:2; member
|
D | tda18271-fe.c | 65 (priv->role == TDA18271_SLAVE) ? in charge_pump_source() 145 switch (priv->role) { in tda18271_channel_configuration() 168 switch (priv->role) { in tda18271_channel_configuration() 1206 priv->role = (cfg) ? cfg->role : TDA18271_MASTER; in tda18271_setup_configuration() 1318 if (cfg->role) in tda18271_attach() 1319 priv->role = cfg->role; in tda18271_attach()
|
D | tda18271.h | 94 enum tda18271_role role; member
|
D | tda18271-priv.h | 108 enum tda18271_role role; member
|
D | tda18271-common.c | 732 (state->role == TDA18271_MASTER) ? 'M' : 'S', in _tda_printk()
|
/linux-4.4.14/drivers/staging/wlan-ng/ |
D | prism2sta.c | 682 hw->cap_sup_mfi.role = le16_to_cpu(hw->cap_sup_mfi.role); in prism2sta_getcardinfo() 690 hw->cap_sup_mfi.role, hw->cap_sup_mfi.id, in prism2sta_getcardinfo() 706 hw->cap_sup_cfi.role = le16_to_cpu(hw->cap_sup_cfi.role); in prism2sta_getcardinfo() 714 hw->cap_sup_cfi.role, hw->cap_sup_cfi.id, in prism2sta_getcardinfo() 730 hw->cap_sup_pri.role = le16_to_cpu(hw->cap_sup_pri.role); in prism2sta_getcardinfo() 738 hw->cap_sup_pri.role, hw->cap_sup_pri.id, in prism2sta_getcardinfo() 754 hw->cap_sup_sta.role = le16_to_cpu(hw->cap_sup_sta.role); in prism2sta_getcardinfo() 763 hw->cap_sup_sta.role, hw->cap_sup_sta.id, in prism2sta_getcardinfo() 769 hw->cap_sup_sta.role, hw->cap_sup_sta.id, in prism2sta_getcardinfo() 786 hw->cap_act_pri_cfi.role = le16_to_cpu(hw->cap_act_pri_cfi.role); in prism2sta_getcardinfo() [all …]
|
D | prism2fw.c | 307 priid.role = *data++; in prism2_fwapply() 1151 s3info[i].info.compat.role, in validate_identity() 1158 if ((s3info[i].info.compat.role == 1) && in validate_identity() 1167 if ((s3info[i].info.compat.role == 1) && in validate_identity() 1176 if ((s3info[i].info.compat.role == 1) && in validate_identity()
|
D | hfa384x.h | 377 u16 role; member
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | fsl-usb.txt | 10 controllers, or "fsl-usb2-dr" for dual role USB controllers 11 or "fsl,mpc5121-usb2-dr" for dual role USB controllers of MPC5121. 15 "ulpi", or "serial". For dual role USB controllers, should be 58 Example dual role USB controller device node : 70 Example dual role USB controller device node for MPC5121ADS:
|
D | ux500-usb.txt | 7 - dr_mode : Dual-role; either host mode "host", peripheral mode "peripheral"
|
/linux-4.4.14/net/bluetooth/bnep/ |
D | bnep.h | 122 __u16 role; member 133 __u16 role; member 158 unsigned int role; member
|
D | core.c | 604 s->role = req->role; in bnep_add_connection() 683 ci->role = s->role; in __bnep_copy_ci()
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | omap_hwmod_54xx_data.c | 355 { .role = "32khz_clk", .clk = "dss_32khz_clk" }, 356 { .role = "sys_clk", .clk = "dss_sys_clk" }, 357 { .role = "hdmi_clk", .clk = "dss_48mhz_clk" }, 402 { .role = "sys_clk", .clk = "dss_sys_clk" }, 451 { .role = "sys_clk", .clk = "dss_sys_clk" }, 472 { .role = "sys_clk", .clk = "dss_sys_clk" }, 512 { .role = "sys_clk", .clk = "dss_sys_clk" }, 553 { .role = "ick", .clk = "l3_iclk_div" }, 648 { .role = "dbclk", .clk = "gpio1_dbclk" }, 670 { .role = "dbclk", .clk = "gpio2_dbclk" }, [all …]
|
D | omap_hwmod_44xx_data.c | 578 { .role = "sys_clk", .clk = "dss_sys_clk" }, 579 { .role = "tv_clk", .clk = "dss_tv_clk" }, 580 { .role = "hdmi_clk", .clk = "dss_48mhz_clk" }, 690 { .role = "sys_clk", .clk = "dss_sys_clk" }, 724 { .role = "sys_clk", .clk = "dss_sys_clk" }, 778 { .role = "sys_clk", .clk = "dss_sys_clk" }, 832 { .role = "ick", .clk = "l3_div_ck" }, 1031 { .role = "dbclk", .clk = "gpio1_dbclk" }, 1053 { .role = "dbclk", .clk = "gpio2_dbclk" }, 1076 { .role = "dbclk", .clk = "gpio3_dbclk" }, [all …]
|
D | omap_hwmod_7xx_data.c | 456 { .role = "dss_clk", .clk = "dss_dss_clk" }, 457 { .role = "hdmi_phy_clk", .clk = "dss_48mhz_clk" }, 458 { .role = "32khz_clk", .clk = "dss_32khz_clk" }, 459 { .role = "video2_clk", .clk = "dss_video2_clk" }, 460 { .role = "video1_clk", .clk = "dss_video1_clk" }, 461 { .role = "hdmi_clk", .clk = "dss_hdmi_clk" }, 462 { .role = "hdcp_clk", .clk = "dss_deshdcp_clk" }, 551 { .role = "sys_clk", .clk = "dss_hdmi_clk" }, 638 { .role = "dbclk", .clk = "gpio1_dbclk" }, 660 { .role = "dbclk", .clk = "gpio2_dbclk" }, [all …]
|
D | omap_hwmod_3xxx_data.c | 596 { .role = "softreset_uart1_fck", .clk = "uart1_fck" }, 638 { .role = "sys_clk", .clk = "dss2_alwon_fck" }, 639 { .role = "tv_clk", .clk = "dss_tv_fck" }, 641 { .role = "tv_dac_clk", .clk = "dss_96m_fck" }, 737 { .role = "sys_clk", .clk = "dss2_alwon_fck" }, 758 { .role = "ick", .clk = "dss_ick" }, 779 { .role = "tv_dac_clk", .clk = "dss_96m_fck" }, 914 { .role = "dbclk", .clk = "gpio1_dbck", }, 939 { .role = "dbclk", .clk = "gpio2_dbck", }, 964 { .role = "dbclk", .clk = "gpio3_dbck", }, [all …]
|
D | omap_hwmod_2430_data.c | 259 { .role = "pad_fck", .clk = "mcbsp_clks" }, 260 { .role = "prcm_fck", .clk = "func_96m_ck" }, 372 { .role = "dbck", .clk = "mmchsdb1_fck" }, 400 { .role = "dbck", .clk = "mmchsdb2_fck" },
|
D | omap_hwmod_33xx_data.c | 199 { .role = "dbg_sysclk", .clk = "dbg_sysclk_ck" }, 200 { .role = "dbg_clka", .clk = "dbg_clka_ck" }, 238 { .role = "dbclk", .clk = "gpio0_dbclk" },
|
D | omap_hwmod_2420_data.c | 190 { .role = "pad_fck", .clk = "mcbsp_clks" }, 191 { .role = "prcm_fck", .clk = "func_96m_ck" },
|
D | omap_hwmod_2xxx_ipblock_data.c | 546 { .role = "tv_clk", .clk = "dss_54m_fck" }, 547 { .role = "sys_clk", .clk = "dss2_fck" }, 588 { .role = "ick", .clk = "dss_ick" },
|
D | omap_hwmod_43xx_data.c | 93 { .role = "dbclk", .clk = "gpio0_dbclk" }, 295 { .role = "dbclk", .clk = "gpio4_dbclk" }, 316 { .role = "dbclk", .clk = "gpio5_dbclk" },
|
D | omap_hwmod_81xx_data.c | 459 { .role = "dbclk", .clk = "sysclk18_ck" }, 485 { .role = "dbclk", .clk = "sysclk18_ck" }, 932 { .role = "dbck", .clk = "sysclk18_ck", },
|
D | omap_hwmod_33xx_43xx_ipblock_data.c | 603 { .role = "dbclk", .clk = "gpio1_dbclk" }, 624 { .role = "dbclk", .clk = "gpio2_dbclk" }, 645 { .role = "dbclk", .clk = "gpio3_dbclk" },
|
D | omap_hwmod.h | 222 const char *role; member
|
D | omap_device.c | 103 _add_clkdev(od, oh->opt_clks[i].role, oh->opt_clks[i].clk); in _add_hwmod_clocks_clkdev()
|
D | omap_hwmod.c | 902 pr_debug("omap_hwmod: enable %s:%s\n", oc->role, in _enable_optional_clocks() 917 pr_debug("omap_hwmod: disable %s:%s\n", oc->role, in _disable_optional_clocks()
|
/linux-4.4.14/tools/perf/scripts/python/ |
D | call-graph-from-postgresql.py | 238 def headerData(self, section, orientation, role): argument 239 if role == Qt.TextAlignmentRole: 242 if role != Qt.DisplayRole: 263 def data(self, index, role): argument 264 if role == Qt.TextAlignmentRole: 267 if role != Qt.DisplayRole:
|
/linux-4.4.14/net/bluetooth/ |
D | hci_conn.c | 194 conn->role = HCI_ROLE_MASTER; in hci_acl_create_connection() 236 if (conn->type == ACL_LINK && conn->role == HCI_ROLE_MASTER && in hci_disconnect() 479 if (conn->role == HCI_ROLE_SLAVE) { in le_conn_timeout() 491 u8 role) in hci_conn_add() argument 505 conn->role = role; in hci_conn_add() 519 if (conn->role == HCI_ROLE_MASTER) in hci_conn_add() 785 u8 role) in hci_connect_le() argument 849 conn = hci_conn_add(hdev, LE_LINK, dst, role); in hci_connect_le() 877 if (conn->role == HCI_ROLE_SLAVE) { in hci_connect_le() 1013 u16 conn_timeout, u8 role) in hci_connect_le_scan() argument [all …]
|
D | amp.c | 117 u8 role = out ? HCI_ROLE_MASTER : HCI_ROLE_SLAVE; in phylink_add() local 119 hcon = hci_conn_add(hdev, AMP_LINK, dst, role); in phylink_add()
|
D | smp.c | 918 if (hcon->role == HCI_ROLE_MASTER) in tk_request() 1722 if (conn->hcon->role != HCI_ROLE_SLAVE) in smp_cmd_pairing_req() 1907 if (conn->hcon->role != HCI_ROLE_MASTER) in smp_cmd_pairing_rsp() 2184 key = hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role); in smp_ltk_encrypt() 2217 hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role)) in smp_sufficient_security() 2240 if (hcon->role != HCI_ROLE_MASTER) in smp_cmd_security_req() 2307 if (hcon->role == HCI_ROLE_MASTER) in smp_conn_security() 2343 if (hcon->role == HCI_ROLE_MASTER) { in smp_conn_security() 2934 if (hcon->role != HCI_ROLE_MASTER) in bredr_pairing()
|
D | hci_event.c | 115 conn->role = rp->role; in hci_cc_role_discovery() 2290 cp.role = 0x00; /* Become master */ in hci_conn_request_evt() 2292 cp.role = 0x01; /* Remain slave */ in hci_conn_request_evt() 3170 conn->role = ev->role; in hci_role_change_evt() 3174 hci_role_switch_cfm(conn, ev->status, ev->role); in hci_role_change_evt() 4466 conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr, ev->role); in hci_le_conn_complete_evt() 4979 ltk = hci_find_ltk(hdev, &conn->dst, conn->dst_type, conn->role); in hci_le_ltk_request_evt() 5062 if (hcon->role == HCI_ROLE_MASTER) { in hci_le_remote_conn_param_req_evt()
|
D | hci_core.c | 2362 u8 addr_type, u8 role) in hci_find_ltk() argument 2371 if (smp_ltk_is_sc(k) || ltk_role(k->type) == role) { in hci_find_ltk() 2479 u8 role = ltk_role(type); in hci_add_ltk() local 2481 old_key = hci_find_ltk(hdev, bdaddr, addr_type, role); in hci_add_ltk()
|
D | sco.c | 740 cp.role = 0x00; /* Ignored */ in sco_conn_defer_accept()
|
D | l2cap_core.c | 1493 if (hcon->role == HCI_ROLE_SLAVE && in l2cap_le_conn_ready() 5194 if (hcon->role != HCI_ROLE_MASTER) in l2cap_conn_param_update_req() 7116 u8 role; in l2cap_chan_connect() local 7126 role = HCI_ROLE_SLAVE; in l2cap_chan_connect() 7128 role = HCI_ROLE_MASTER; in l2cap_chan_connect() 7133 role); in l2cap_chan_connect()
|
D | mgmt.c | 6787 u8 status, flags, role, addr[7], hash[16], rand[16]; in read_local_oob_ext_data() local 6884 role = 0x02; in read_local_oob_ext_data() 6886 role = 0x01; in read_local_oob_ext_data() 6889 &role, sizeof(role)); in read_local_oob_ext_data()
|
/linux-4.4.14/drivers/scsi/csiostor/ |
D | csio_rnode.c | 457 rn->role = CSIO_RNFR_FABRIC; in csio_rn_verify_rparams() 470 rn->role = CSIO_RNFR_NS; in csio_rn_verify_rparams() 480 rn->role = CSIO_RNFR_NPORT; in csio_rn_verify_rparams() 494 rn->role |= CSIO_RNFR_TARGET; in csio_rn_verify_rparams() 497 rn->role |= CSIO_RNFR_INITIATOR; in csio_rn_verify_rparams() 504 rn->role = 0; in csio_rn_verify_rparams() 557 if (rn->role & CSIO_RNFR_TARGET) in __csio_reg_rnode() 578 if (rn->role & CSIO_RNFR_TARGET) { in __csio_unreg_rnode()
|
D | csio_attr.c | 72 if (rn->role & CSIO_RNFR_INITIATOR || rn->role & CSIO_RNFR_TARGET) { in csio_reg_rnode() 98 if (rn->role & CSIO_RNFR_INITIATOR) in csio_reg_rnode() 100 if (rn->role & CSIO_RNFR_TARGET) in csio_reg_rnode() 126 rn->role &= ~(CSIO_RNFR_INITIATOR | CSIO_RNFR_TARGET); in csio_unreg_rnode()
|
D | csio_rnode.h | 105 uint32_t role; /* Fabric/Target/ member
|
/linux-4.4.14/drivers/usb/dwc2/ |
D | Kconfig | 13 dwc2_platform.ko. For all modes(host, gadget and dual-role), there 32 comment "Gadget/Dual-role mode requires USB Gadget support to be enabled" 47 Select this option if you want the driver to work in a dual-role 49 the role will be determined by the cable that gets plugged-in. This
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 132 role.level: 135 role.direct: 140 by role.level (2MB for first level, 1GB for second level, 0.5TB for third 144 role.quadrant: 145 When role.cr4_pae=0, the guest uses 32-bit gptes while the host uses 64-bit 148 For first-level shadow pages, role.quadrant can be 0 or 1 and denotes the 152 shadow pages) so role.quadrant takes values in the range 0..3. Each 154 role.access: 157 role.invalid: 161 role.cr4_pae: [all …]
|
/linux-4.4.14/drivers/media/usb/em28xx/ |
D | em28xx-input.c | 507 while (dev->board.buttons[j].role >= 0 && in em28xx_query_buttons() 508 dev->board.buttons[j].role < EM28XX_NUM_BUTTON_ROLES) { in em28xx_query_buttons() 533 switch (button->role) { in em28xx_query_buttons() 609 while (dev->board.buttons[i].role >= 0 && in em28xx_init_buttons() 610 dev->board.buttons[i].role < EM28XX_NUM_BUTTON_ROLES) { in em28xx_init_buttons() 627 if (button->role == EM28XX_BUTTON_SNAPSHOT) { in em28xx_init_buttons() 631 } else if (button->role == EM28XX_BUTTON_ILLUMINATION) { in em28xx_init_buttons()
|
D | em28xx.h | 420 enum em28xx_led_role role; member 433 enum em28xx_button_role role; member 761 enum em28xx_led_role role);
|
D | em28xx-core.c | 613 enum em28xx_led_role role) in em28xx_find_led() argument 618 while (dev->board.leds[k].role >= 0 && in em28xx_find_led() 619 dev->board.leds[k].role < EM28XX_NUM_LED_ROLES) { in em28xx_find_led() 620 if (dev->board.leds[k].role == role) in em28xx_find_led()
|
D | em28xx-cards.c | 499 .role = EM28XX_BUTTON_SNAPSHOT, 510 .role = EM28XX_BUTTON_SNAPSHOT, 516 .role = EM28XX_BUTTON_ILLUMINATION, 529 .role = EM28XX_LED_ANALOG_CAPTURING, 535 .role = EM28XX_LED_ILLUMINATION, 545 .role = EM28XX_LED_DIGITAL_CAPTURING, 555 .role = EM28XX_LED_DIGITAL_CAPTURING,
|
D | em28xx-dvb.c | 859 .role = TDA18271_MASTER,
|
/linux-4.4.14/include/linux/ |
D | drbd.h | 269 unsigned role:2 ; /* 3/4 primary/secondary/unknown */ member 293 unsigned role:2 ; /* 3/4 primary/secondary/unknown */
|
/linux-4.4.14/include/linux/netfilter/ |
D | nf_conntrack_dccp.h | 31 u_int8_t role[IP_CT_DIR_MAX]; member
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic7xxx_core.c | 155 role_t role); 270 role_t role, uint32_t status); 1274 if (devinfo.role == ROLE_INITIATOR) { in ahc_handle_seqint() 2218 u_int *period, u_int *ppr_options, role_t role) in ahc_devlimited_syncrate() argument 2247 if (role == ROLE_TARGET) in ahc_devlimited_syncrate() 2391 u_int *offset, int wide, role_t role) in ahc_validate_offset() argument 2408 if (role == ROLE_TARGET) in ahc_validate_offset() 2421 u_int *bus_width, role_t role) in ahc_validate_width() argument 2436 if (role == ROLE_TARGET) in ahc_validate_width() 2773 role_t role; in ahc_fetch_devinfo() local [all …]
|
D | aic79xx_core.c | 127 role_t role); 198 role_t role, uint32_t status, 242 role_t role, uint32_t status); 267 u_int tag, role_t role); 2099 if (devinfo.role == ROLE_INITIATOR) { in ahd_handle_seqint() 3699 u_int *period, u_int *ppr_options, role_t role) in ahd_devlimited_syncrate() argument 3722 if (role == ROLE_TARGET) in ahd_devlimited_syncrate() 3788 role_t role) in ahd_validate_offset() argument 3804 if (role == ROLE_TARGET) in ahd_validate_offset() 3817 u_int *bus_width, role_t role) in ahd_validate_width() argument [all …]
|
D | aic7xxx.h | 1105 role_t role; /* member 1158 u_int tag, role_t role); 1185 role_t role, uint32_t status, 1203 role_t role);
|
D | aic79xx.h | 1301 role_t role; /* member 1387 role_t role, uint32_t status, 1399 role_t role);
|
D | aic7xxx_osm.h | 688 role_t role, uint32_t status);
|
D | aic79xx_osm.h | 679 role_t role, uint32_t status);
|
D | aic7xxx_osm.c | 1354 int lun, u_int tag, role_t role, uint32_t status) in ahc_platform_abort_scbs() argument
|
D | aic79xx_osm.c | 1488 int lun, u_int tag, role_t role, uint32_t status) in ahd_platform_abort_scbs() argument
|
/linux-4.4.14/Documentation/s390/ |
D | qeth.txt | 7 To generate the events the device must be assigned a role of either 19 ROLE={primary|secondary|none} - the role assigned to the port.
|
/linux-4.4.14/drivers/usb/musb/ |
D | Kconfig | 11 Say Y here if your system has a dual role high speed USB 14 it's being used with, including the USB peripheral role, 15 or the USB host role, or both.
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-platform-chipidea-usb-otg | 16 is using the bus as host role, otherwise 0. 46 is using the bus as host role, otherwise 0.
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | fweh.c | 187 ifevent->flags, ifevent->role); in brcmf_fweh_handle_if_event() 195 (ifevent->role == BRCMF_E_IF_ROLE_P2P_CLIENT || in brcmf_fweh_handle_if_event() 196 ((ifevent->role == BRCMF_E_IF_ROLE_STA) && in brcmf_fweh_handle_if_event()
|
D | fweh.h | 223 u8 role; member
|
/linux-4.4.14/include/net/bluetooth/ |
D | hci_core.h | 425 __u8 role; member 677 if (c->role == HCI_ROLE_SLAVE) in hci_conn_hash_add() 703 if (c->role == HCI_ROLE_SLAVE) in hci_conn_hash_del() 866 u8 role); 878 u16 conn_timeout, u8 role); 881 u8 role); 890 int hci_conn_switch_role(struct hci_conn *conn, __u8 role); 1057 u8 addr_type, u8 role); 1181 void (*role_switch_cfm) (struct hci_conn *conn, __u8 status, __u8 role); 1270 __u8 role) in hci_role_switch_cfm() argument [all …]
|
D | hci.h | 545 __u8 role; member 818 __u8 role; member 824 __u8 role; member 1606 __u8 role; member 1864 __u8 role; member
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/ |
D | sensorhub.txt | 3 Sensorhub is a MCU which manages several sensors and also plays the role
|
/linux-4.4.14/Documentation/devicetree/bindings/serio/ |
D | allwinner,sun4i-ps2.txt | 3 A20 PS2 is dual role controller (PS2 host and PS2 device). These bindings are
|
/linux-4.4.14/drivers/staging/rtl8188eu/include/ |
D | rtl8188e_cmd.h | 94 u8 role:1; /* 1: Owner, 0: Client */ member
|
D | rtw_mlme.h | 213 enum P2P_ROLE role; member
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/ |
D | clockdomain.txt | 5 This binding uses the common clock binding[1] in consumer role.
|
/linux-4.4.14/Documentation/blackfin/ |
D | bfin-spi-notes.txt | 15 You can even use the same pin whose peripheral role is a SSEL,
|
/linux-4.4.14/Documentation/security/ |
D | SELinux.txt | 24 kernel, with a single selinux user, role, and type.
|
D | tomoyo.txt | 38 The role of "pathname based access control" in security.
|
/linux-4.4.14/drivers/staging/rtl8723au/include/ |
D | rtl8723a_cmd.h | 93 u8 role:1; /* 1: Owner, 0: Client */ member
|
/linux-4.4.14/drivers/usb/core/ |
D | Kconfig | 51 or a host. The initial role is decided by the type of 53 role devices talk to each other.
|
/linux-4.4.14/drivers/usb/isp1760/ |
D | Kconfig | 6 or an ISP1761 USB dual-role controller.
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | fw-api-tof.h | 353 u8 role; member
|
/linux-4.4.14/Documentation/timers/ |
D | hpet.txt | 17 role. Many x86 BIOS writers don't route HPET interrupts at all, which
|
/linux-4.4.14/Documentation/ |
D | CodeOfConflict | 21 role is, please see:
|
D | vgaarbiter.txt | 17 ideally, being a userspace application, it is not the role of the X server to
|
D | md.txt | 139 and its role in the array. 419 This gives the role that the device has in the array. It will
|
D | initrd.txt | 284 The key role of initrd here is to re-use the configuration data during
|
/linux-4.4.14/Documentation/acpi/ |
D | scan_handlers.txt | 15 parsing code (although their role is analogous to the role of those objects).
|
/linux-4.4.14/drivers/net/wireless/p54/ |
D | lmac.h | 124 __le16 role; member 132 __le16 role; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
D | fw.c | 579 p2p_ps_offload->role = 1; in rtl8723e_set_p2p_ps_offload_cmd() 582 p2p_ps_offload->role = 0; in rtl8723e_set_p2p_ps_offload_cmd()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
D | fw.c | 564 p2p_ps_offload->role = 1; in rtl8723be_set_p2p_ps_offload_cmd() 567 p2p_ps_offload->role = 0; in rtl8723be_set_p2p_ps_offload_cmd()
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_fcbuild.h | 173 u16 ox_id, enum bfa_lport_role role); 225 enum bfa_lport_role role);
|
D | bfad_drv.h | 301 bfa_status_t bfad_cfg_pport(struct bfad_s *bfad, enum bfa_lport_role role);
|
D | bfi_ms.h | 601 u8 role; member
|
D | bfad.c | 934 bfad_cfg_pport(struct bfad_s *bfad, enum bfa_lport_role role) in bfad_cfg_pport() argument 940 (role & BFA_LPORT_ROLE_FCP_IM)) { in bfad_cfg_pport()
|
D | bfa_fcbuild.c | 417 __be16 ox_id, enum bfa_lport_role role) in fc_prli_acc_build() argument
|
/linux-4.4.14/drivers/md/ |
D | dm-raid.c | 900 int role; in super_init_validation() local 1005 role = le32_to_cpu(sb2->array_position); in super_init_validation() 1006 if (role != r->raid_disk) { in super_init_validation() 1013 role, r->raid_disk); in super_init_validation() 1020 if (failed_devices & (1 << role)) in super_init_validation()
|
D | md.c | 1634 int role; in super_1_validate() local 1637 role = MD_DISK_ROLE_SPARE; in super_1_validate() 1640 role = le16_to_cpu(sb->dev_roles[rdev->desc_nr]); in super_1_validate() 1641 switch(role) { in super_1_validate() 1661 rdev->saved_raid_disk = role; in super_1_validate() 1670 rdev->raid_disk = role; in super_1_validate() 2249 int role; in does_sb_need_changing() local 2263 role = le16_to_cpu(sb->dev_roles[rdev->desc_nr]); in does_sb_need_changing() 2265 if (role == 0xffff && rdev->raid_disk >=0 && in does_sb_need_changing() 2269 if (test_bit(Faulty, &rdev->flags) && (role < 0xfffd)) in does_sb_need_changing() [all …]
|
/linux-4.4.14/Documentation/fb/ |
D | internals.txt | 12 The following structures play a role in the game of frame buffer devices. They
|
D | sisfb.txt | 21 important role in connection with DRM/DRI: Sisfb manages the memory heap
|
/linux-4.4.14/Documentation/watchdog/ |
D | pcwd-watchdog.txt | 13 The Watchdog Driver has one basic role: to talk to the card and send
|
/linux-4.4.14/Documentation/device-mapper/ |
D | snapshot.txt | 56 works with persistent snapshots. This target assumes the role of the 105 A merging snapshot assumes the role of the "snapshot-origin" while
|
/linux-4.4.14/include/media/ |
D | soc_camera.h | 75 enum soc_camera_subdev_role role; member
|
/linux-4.4.14/drivers/net/wireless/hostap/ |
D | hostap_common.h | 190 __le16 role; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
D | fw.c | 790 p2p_ps_offload->role = 1; in rtl88e_set_p2p_ps_offload_cmd() 793 p2p_ps_offload->role = 0; in rtl88e_set_p2p_ps_offload_cmd()
|
/linux-4.4.14/Documentation/usb/ |
D | chipidea.txt | 33 B-device should take host role and enumrate A-device.
|
/linux-4.4.14/arch/x86/include/asm/ |
D | kvm_host.h | 225 union kvm_mmu_page_role role; member 1185 #define kvm_memslots_for_spte_role(kvm, role) __kvm_memslots(kvm, (role).smm) argument
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | fw.c | 812 p2p_ps_offload->role = 1; in rtl92ee_set_p2p_ps_offload_cmd() 815 p2p_ps_offload->role = 0; in rtl92ee_set_p2p_ps_offload_cmd()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192c/ |
D | fw_common.c | 841 p2p_ps_offload->role = 1; in rtl92c_set_p2p_ps_offload_cmd() 844 p2p_ps_offload->role = 0; in rtl92c_set_p2p_ps_offload_cmd()
|
/linux-4.4.14/Documentation/power/ |
D | pci.txt | 351 The PCI subsystem plays a vital role in the runtime power management of PCI 708 general may be registered at any time. In that case the role of the prepare() 763 The role of this callback is analogous to the role of the suspend() callback 781 The role of this callback is analogous to the role of the suspend_noirq() 795 The role of this callback is analogous to the role of the suspend() and freeze() 809 The role of this callback is analogous to the role of the suspend_noirq() and 848 The role of this callback is analogous to the role of resume_noirq(). The
|
D | devices.txt | 31 by implementing various role-specific suspend and resume methods to 57 various role-specific suspend and resume methods, so that the hardware
|
/linux-4.4.14/Documentation/devicetree/bindings/phy/ |
D | nvidia,tegra20-usb-phy.txt | 63 - dr_mode : dual role mode. Indicates the working mode for the PHY. Can be
|
/linux-4.4.14/drivers/media/pci/saa7164/ |
D | saa7164-dvb.c | 67 .role = TDA18271_MASTER, 73 .role = TDA18271_SLAVE,
|
/linux-4.4.14/drivers/scsi/aic94xx/ |
D | aic94xx_hwi.c | 78 if (phy->sas_phy.role & PHY_ROLE_INITIATOR) in asd_init_phy_identify() 80 if (phy->sas_phy.role & PHY_ROLE_TARGET) in asd_init_phy_identify() 97 sas_phy->role = PHY_ROLE_INITIATOR; in asd_init_phy()
|
D | aic94xx_scb.c | 796 if (phy->sas_phy.role == PHY_ROLE_INITIATOR) in asd_build_control_phy() 798 else if (phy->sas_phy.role == PHY_ROLE_TARGET) in asd_build_control_phy()
|
/linux-4.4.14/Documentation/scsi/ |
D | scsi_fc_transport.txt | 53 be specified for the vport, with FCP_Initiator being the primary role 176 vport with the role of FCP_Initiator. Each WWN is specified as 16 354 - If the role is FCP Initiator, the LLDD is to : 420 be followed. E.g. If the vport has a FCP Initiator role, the LLDD
|
D | osst.txt | 7 It is intended to help advanced users to understand the role of osst and to
|
D | libsas.txt | 68 class, proto, type, role, oob_mode, linkrate -- must be set
|
D | ChangeLog.lpfc | 334 * rport fixes: when receiving PRLI's, set node/rport role values
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | dove-cm-a510.dtsi | 66 * U2: 2 dual-role USB2.0 ports
|
D | imx51-digi-connectcore-som.dtsi | 204 /* Device role is not known, keep status disabled */
|
D | am57xx-beagle-x15.dts | 716 * as "host" or "dual-role". If so, provide
|
/linux-4.4.14/arch/arm/kvm/ |
D | interrupts.S | 191 @ Reset Hyp-role
|
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/ |
D | af9035.c | 1474 it913x_config.role = IT913X_ROLE_DUAL_MASTER; in af9035_tuner_attach() 1476 it913x_config.role = IT913X_ROLE_DUAL_SLAVE; in af9035_tuner_attach() 1499 it913x_config.role = IT913X_ROLE_DUAL_MASTER; in af9035_tuner_attach() 1501 it913x_config.role = IT913X_ROLE_DUAL_SLAVE; in af9035_tuner_attach()
|
/linux-4.4.14/Documentation/networking/dsa/ |
D | bcm_sf2.txt | 21 fail-over not to lose packets during a MoCA role re-election, as well as out of
|
/linux-4.4.14/include/scsi/ |
D | libsas.h | 338 enum sas_phy_role role; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | fw.c | 1775 p2p_ps_offload->role = 1; in rtl8821ae_set_p2p_ps_offload_cmd() 1778 p2p_ps_offload->role = 0; in rtl8821ae_set_p2p_ps_offload_cmd()
|
/linux-4.4.14/drivers/target/ |
D | target_core_stat.c | 88 CONFIGFS_ATTR_RO(target_stat_, role); 512 CONFIGFS_ATTR_RO(target_stat_port_, role);
|
/linux-4.4.14/Documentation/arm/ |
D | vlocks.txt | 68 whether an election is in progress, and plays a role analogous to the
|
D | cluster-pm-race-avoidance.txt | 433 attempts to play the first man role and do the cluster-level
|
/linux-4.4.14/drivers/usb/phy/ |
D | Kconfig | 175 implements role switch between EHCI host driver and gadget driver.
|
/linux-4.4.14/drivers/usb/gadget/legacy/ |
D | Kconfig | 49 the "B-Peripheral" role, that device will use HNP to let this 50 one serve as the USB host instead (in the "B-Host" role).
|
/linux-4.4.14/include/linux/mfd/ |
D | cros_ec_commands.h | 2541 uint8_t role; member
|
/linux-4.4.14/Documentation/driver-model/ |
D | platform.txt | 116 on a non-driver role: the driver registers its platform device, rather than
|
/linux-4.4.14/drivers/staging/fsl-mc/ |
D | README.txt | 363 plays a role of being a proxy between the PHY driver and the
|
/linux-4.4.14/drivers/scsi/mvsas/ |
D | mv_init.c | 102 sas_phy->role = PHY_ROLE_INITIATOR; in mvs_phy_init()
|
/linux-4.4.14/Documentation/development-process/ |
D | 3.Early-stage | 134 that role currently. So, when there is doubt about who to contact, a
|
D | 4.Coding | 134 More recent compilers take an increasingly active role in deciding whether
|
/linux-4.4.14/drivers/scsi/isci/ |
D | phy.c | 1414 iphy->sas_phy.role = PHY_ROLE_INITIATOR; in isci_phy_init()
|
/linux-4.4.14/Documentation/fmc/ |
D | carrier.txt | 256 If, however, your GPIO pin has a specific known role, you can pass a
|
/linux-4.4.14/Documentation/rapidio/ |
D | rapidio.txt | 154 routine depending on the configured role of a master port: host or agent.
|
/linux-4.4.14/drivers/scsi/pm8001/ |
D | pm8001_init.c | 131 sas_phy->role = PHY_ROLE_INITIATOR; in pm8001_phy_init()
|
/linux-4.4.14/drivers/spi/ |
D | Kconfig | 5 # nobody's needed a slave side API yet. The master-role API is not
|
/linux-4.4.14/Documentation/filesystems/ |
D | Locking | 249 WBC_SYNC_NONE) then its role is to get as much writeout underway as
|
D | coda.txt | 406 Before going on let us elucidate the role of the various fields. The 448 detailed description of the role of the SCM.--)
|
/linux-4.4.14/drivers/media/platform/soc_camera/ |
D | soc_camera.c | 1536 if (sasd->role == SOCAM_SUBDEV_DATA_SOURCE) in scan_async_group()
|
/linux-4.4.14/drivers/usb/host/ |
D | Kconfig | 9 The Cypress C67x00 (EZ-Host/EZ-OTG) chips are dual-role
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/ |
D | wifi.h | 1160 u8 role:1; /* 1: Owner, 0: Client */ member
|
/linux-4.4.14/Documentation/nvdimm/ |
D | nvdimm.txt | 420 sets on the "nfit_test.0" bus. The primary role of regions are to be a
|
/linux-4.4.14/Documentation/cgroups/ |
D | unified-hierarchy.txt | 638 its role and imperative given its nature. Some of the cgroup features
|
/linux-4.4.14/drivers/gpio/ |
D | Kconfig | 607 Port Expanders. Each IO port on these chips has a fixed role of
|
/linux-4.4.14/drivers/staging/speakup/ |
D | spkguide.txt | 1357 Version filling the role of the Document, thus licensing distribution
|
/linux-4.4.14/Documentation/networking/ |
D | bonding.txt | 475 to this MAC address while they are in a backup role; a
|
/linux-4.4.14/ |
D | MAINTAINERS | 86 role as you write your new code].
|