Home
last modified time | relevance | path

Searched refs:nt (Results 1 – 25 of 84) sorted by relevance

1234

/openbmc/linux/drivers/gpu/drm/panel/
H A Dpanel-novatek-nt35950.c291 nt->cur_mode = nt35950_get_current_mode(nt); in nt35950_on()
307 ret = nt35950_set_scaler(nt, mode_data[nt->cur_mode].scaler_on); in nt35950_on()
434 if (nt->prepared) in nt35950_prepare()
467 regulator_bulk_disable(ARRAY_SIZE(nt->vregs), nt->vregs); in nt35950_prepare()
488 regulator_bulk_disable(ARRAY_SIZE(nt->vregs), nt->vregs); in nt35950_unprepare()
540 nt = devm_kzalloc(dev, sizeof(*nt), GFP_KERNEL); in nt35950_probe()
541 if (!nt) in nt35950_probe()
549 if (!nt->desc) in nt35950_probe()
579 nt->dsi[0] = dsi; in nt35950_probe()
596 nt->dsi[i]->lanes = nt->desc->num_lanes; in nt35950_probe()
[all …]
H A Dpanel-novatek-nt35510.c471 nt->conf->avdd); in nt35510_setup_power()
481 nt->conf->avee); in nt35510_setup_power()
491 nt->conf->vgh); in nt35510_setup_power()
506 nt->conf->vgl); in nt35510_setup_power()
516 nt->conf->vgp); in nt35510_setup_power()
521 nt->conf->vgn); in nt35510_setup_power()
678 ret = regulator_bulk_enable(ARRAY_SIZE(nt->supplies), nt->supplies); in nt35510_power_on()
771 ret = regulator_bulk_disable(ARRAY_SIZE(nt->supplies), nt->supplies); in nt35510_power_off()
879 if (!nt) in nt35510_probe()
882 nt->dev = dev; in nt35510_probe()
[all …]
H A Dpanel-novatek-nt35560.c377 if (nt->video_mode) { in nt35560_prepare()
389 nt35560_power_off(nt); in nt35560_prepare()
413 nt35560_power_off(nt); in nt35560_unprepare()
426 if (nt->video_mode) in nt35560_get_modes()
456 struct nt35560 *nt; in nt35560_probe() local
460 if (!nt) in nt35560_probe()
466 nt->dev = dev; in nt35560_probe()
469 if (!nt->conf) { in nt35560_probe()
485 if (nt->video_mode) in nt35560_probe()
495 if (IS_ERR(nt->supply)) in nt35560_probe()
[all …]
/openbmc/linux/drivers/net/
H A Dnetconsole.c177 nt = kzalloc(sizeof(*nt), GFP_KERNEL); in alloc_and_init()
178 if (!nt) in alloc_and_init()
192 return nt; in alloc_and_init()
202 if (!nt) { in alloc_param_target()
233 return nt; in alloc_param_target()
236 kfree(nt); in alloc_param_target()
370 if (nt->release && !nt->extended) { in enabled_store()
689 if (!nt) in make_netconsole_target()
779 netdev_put(nt->np.dev, &nt->np.dev_tracker); in netconsole_netdev_event()
902 if (nt->extended && nt->enabled && netif_running(nt->np.dev)) in write_ext_msg()
[all …]
H A Dnlmon.c32 struct netlink_tap nt; member
39 nlmon->nt.dev = dev; in nlmon_open()
40 nlmon->nt.module = THIS_MODULE; in nlmon_open()
41 return netlink_add_tap(&nlmon->nt); in nlmon_open()
48 return netlink_remove_tap(&nlmon->nt); in nlmon_close()
/openbmc/linux/drivers/ntb/
H A Dntb_transport.c272 #define QP_TO_MW(nt, qp) ((qp) % nt->mw_count) argument
788 ntb_peer_db_set(nt->ndev, nt->msi_db_mask); in ntb_transport_msi_desc_changed()
981 qp_bitmap_alloc = nt->qp_bitmap & ~nt->qp_bitmap_free; in ntb_transport_link_cleanup()
1276 nt = kzalloc_node(sizeof(*nt), GFP_KERNEL, node); in ntb_transport_probe()
1277 if (!nt) in ntb_transport_probe()
1307 nt->msi_spad_offset = nt->mw_count * 2 + MW0_SZ_HIGH; in ntb_transport_probe()
1404 kfree(nt); in ntb_transport_probe()
1441 kfree(nt); in ntb_transport_free()
2443 if (ntb_db_read(nt->ndev) & nt->msi_db_mask) { in ntb_transport_doorbell_callback()
2445 ntb_db_clear(nt->ndev, nt->msi_db_mask); in ntb_transport_doorbell_callback()
[all …]
/openbmc/linux/net/tipc/
H A Dname_distr.c90 struct name_table *nt = tipc_name_table(net); in tipc_named_publish() local
98 write_lock_bh(&nt->cluster_scope_lock); in tipc_named_publish()
100 write_unlock_bh(&nt->cluster_scope_lock); in tipc_named_publish()
124 write_lock_bh(&nt->cluster_scope_lock); in tipc_named_withdraw()
126 write_unlock_bh(&nt->cluster_scope_lock); in tipc_named_withdraw()
216 nt->rc_dests++; in tipc_named_node_up()
217 seqno = nt->snd_nxt; in tipc_named_node_up()
220 read_lock_bh(&nt->cluster_scope_lock); in tipc_named_node_up()
223 read_unlock_bh(&nt->cluster_scope_lock); in tipc_named_node_up()
264 nt->rc_dests--; in tipc_publ_notify()
[all …]
H A Dname_table.c778 nt->local_publ_count++; in tipc_nametbl_publish()
781 rc_dests = nt->rc_dests; in tipc_nametbl_publish()
811 nt->local_publ_count--; in tipc_nametbl_withdraw()
816 rc_dests = nt->rc_dests; in tipc_nametbl_withdraw()
888 struct name_table *nt; in tipc_nametbl_init() local
891 nt = kzalloc(sizeof(*nt), GFP_KERNEL); in tipc_nametbl_init()
892 if (!nt) in tipc_nametbl_init()
898 INIT_LIST_HEAD(&nt->node_scope); in tipc_nametbl_init()
901 tn->nametbl = nt; in tipc_nametbl_init()
945 service_head = &nt->services[i]; in tipc_nametbl_stop()
[all …]
/openbmc/linux/arch/hexagon/lib/
H A Dmemset.S159 if (r2==#0) jump:nt .L1
164 if (p0.new) jump:nt .L3
179 if (!p0.new) jump:nt .L8
191 if (!p0.new) jump:nt .L10
197 if (p0.new) jump:nt .L1
202 if (!p0.new) jump:nt .L12
208 if (p0.new) jump:nt .L1
216 if (r3==#0) jump:nt .L17
222 if (r3==#0) jump:nt .L17
228 if (r3==#0) jump:nt .L17
[all …]
H A Dmemcpy_likely_aligned.S16 if (!p0) jump:nt .Lmemcpy_call
22 if (p0) jump:nt .Lmemcpy_call
/openbmc/u-boot/lib/efi_loader/
H A Defi_image_loader.c220 IMAGE_NT_HEADERS32 *nt; in efi_load_pe() local
240 nt = (void *) ((char *)efi + dos->e_lfanew); in efi_load_pe()
241 if (nt->Signature != IMAGE_NT_SIGNATURE) { in efi_load_pe()
247 if (machines[i] == nt->FileHeader.Machine) { in efi_load_pe()
254 __func__, nt->FileHeader.Machine); in efi_load_pe()
259 num_sections = nt->FileHeader.NumberOfSections; in efi_load_pe()
260 sections = (void *)&nt->OptionalHeader + in efi_load_pe()
261 nt->FileHeader.SizeOfOptionalHeader; in efi_load_pe()
271 IMAGE_NT_HEADERS64 *nt64 = (void *)nt; in efi_load_pe()
288 IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader; in efi_load_pe()
[all …]
/openbmc/linux/Documentation/usb/
H A Dlinux-cdc-acm.inf28 [DriverInstall.nt]
30 CopyFiles=DriverCopyFiles.nt
31 AddReg=DriverInstall.nt.AddReg
33 [DriverCopyFiles.nt]
36 [DriverInstall.nt.AddReg]
41 [DriverInstall.nt.Services]
42 AddService=usbser, 0x00000002, DriverService.nt
44 [DriverService.nt]
/openbmc/linux/arch/hexagon/mm/
H A Dcopy_user_template.S20 if (!p0.new) jump:nt .Ldone
27 if (!p0.new) jump:nt .Loop_not_aligned_8
53 if (p0.new) jump:nt .Lalign
57 if (!p0.new) jump:nt .Loop_not_aligned_4
83 if (!p0.new) jump:nt .Loop_not_aligned
126 if (p0.new) jump:nt .Loop_not_aligned
/openbmc/linux/tools/testing/selftests/rcutorture/bin/
H A Dfunctions.sh311 echo $2 -smp cores=`expr \( $3 + $nt - 1 \) / $nt`,threads=$nt
/openbmc/linux/tools/perf/util/
H A Dthread_map.c184 struct perf_thread_map *threads = NULL, *nt; in thread_map__new_by_pid_str() local
214 nt = perf_thread_map__realloc(threads, total_tasks); in thread_map__new_by_pid_str()
215 if (nt == NULL) in thread_map__new_by_pid_str()
218 threads = nt; in thread_map__new_by_pid_str()
246 struct perf_thread_map *threads = NULL, *nt; in thread_map__new_by_tid_str() local
273 nt = perf_thread_map__realloc(threads, ntasks); in thread_map__new_by_tid_str()
275 if (nt == NULL) in thread_map__new_by_tid_str()
278 threads = nt; in thread_map__new_by_tid_str()
/openbmc/linux/Documentation/devicetree/bindings/display/panel/
H A Dkingdisplay,kd035g6-54nt.yaml4 $id: http://devicetree.org/schemas/display/panel/kingdisplay,kd035g6-54nt.yaml#
18 const: kingdisplay,kd035g6-54nt
44 compatible = "kingdisplay,kd035g6-54nt";
/openbmc/qemu/tests/tcg/hexagon/
H A Dtest_fibonacci.S11 p0 = cmp.gt(r2, #0); if (!p0.new) jump:nt .LBB0_3
22 p0 = cmp.gt(r2, r5); if (p0.new) jump:nt .LBB0_2
H A Dtest_reorder.S20 if (p0.new) jump:nt skip
/openbmc/linux/net/ipv6/
H A Dip6_gre.c349 struct ip6_tnl *t, *nt; in ip6gre_tunnel_locate() local
374 nt = netdev_priv(dev); in ip6gre_tunnel_locate()
375 nt->parms = *parms; in ip6gre_tunnel_locate()
378 nt->dev = dev; in ip6gre_tunnel_locate()
379 nt->net = dev_net(dev); in ip6gre_tunnel_locate()
386 return nt; in ip6gre_tunnel_locate()
1984 struct ip6_tnl *nt; in ip6gre_newlink_common() local
1988 nt = netdev_priv(dev); in ip6gre_newlink_common()
2000 nt->dev = dev; in ip6gre_newlink_common()
2001 nt->net = dev_net(dev); in ip6gre_newlink_common()
[all …]
/openbmc/linux/drivers/mtd/ubi/
H A Dgluebi.c447 struct ubi_notification *nt = ns_ptr; in gluebi_notify() local
451 gluebi_create(&nt->di, &nt->vi); in gluebi_notify()
454 gluebi_remove(&nt->vi); in gluebi_notify()
457 gluebi_resized(&nt->vi); in gluebi_notify()
460 gluebi_updated(&nt->vi); in gluebi_notify()
H A Dblock.c538 struct ubi_notification *nt = ns_ptr; in ubiblock_notify() local
548 ubiblock_remove(&nt->vi); in ubiblock_notify()
551 ubiblock_resize(&nt->vi); in ubiblock_notify()
558 if (nt->vi.vol_type == UBI_STATIC_VOLUME) in ubiblock_notify()
559 ubiblock_resize(&nt->vi); in ubiblock_notify()
/openbmc/qemu/target/hexagon/imported/
H A Dbranch.idef41 Q6INSN(TAG##t,"if (Pu4) "OPER":nt "OPER2,ATTRIB,DESCR,{fBRANCH_SPECULATE_STALL(fLSBOLD(PuV),,SPECUL…
42 Q6INSN(TAG##f,"if (!Pu4) "OPER":nt "OPER2,ATTRIB,DESCR,{fBRANCH_SPECULATE_STALL(fLSBOLDNOT(PuV),,SP…
53 Q6INSN(TAG##tnew,"if (Pu4.new) "OPER":nt "OPER2,ATTRIB,DESCR,{fBRANCH_SPECULATE_STALL(fLSBNEW(PuN),…
54 Q6INSN(TAG##fnew,"if (!Pu4.new) "OPER":nt "OPER2,ATTRIB,DESCR,{fBRANCH_SPECULATE_STALL(fLSBNEWNOT(P…
73 Q6INSN(J2_jumprz,"if (Rs32!=#0) jump:nt #r13:2",ATTRIBS(A_CJNEWDIR,A_ARCHV3),"direct conditional ju…
76 Q6INSN(J2_jumprnz,"if (Rs32==#0) jump:nt #r13:2",ATTRIBS(A_CJNEWDIR,A_ARCHV3),"direct conditional j…
85 Q6INSN(J2_jumprgtez,"if (Rs32>=#0) jump:nt #r13:2",ATTRIBS(A_CJNEWDIR,A_ARCHV3),"direct conditional…
91 Q6INSN(J2_jumprltez,"if (Rs32<=#0) jump:nt #r13:2",ATTRIBS(A_CJNEWDIR,A_ARCHV3),"direct conditional…
106 Q6INSN(J4_##TAG##_tp0_jump_nt, "p0="TST"; if (p0.new) jump:nt #r9:2", ATTRIBS(A_CJNEWDIR,A_NEWCMPJU…
110 Q6INSN(J4_##TAG##_tp1_jump_nt, "p1="TST"; if (p1.new) jump:nt #r9:2", ATTRIBS(A_CJNEWDIR,A_NEWCMPJU…
[all …]
/openbmc/linux/net/ipv4/
H A Dip_tunnel.c332 struct ip_tunnel *nt; in ip_tunnel_create() local
347 nt = netdev_priv(dev); in ip_tunnel_create()
354 ip_tunnel_add(itn, nt); in ip_tunnel_create()
355 return nt; in ip_tunnel_create()
1179 struct ip_tunnel *nt; in ip_tunnel_newlink() local
1185 nt = netdev_priv(dev); in ip_tunnel_newlink()
1188 if (nt->collect_md) { in ip_tunnel_newlink()
1196 nt->net = net; in ip_tunnel_newlink()
1197 nt->parms = *p; in ip_tunnel_newlink()
1198 nt->fwmark = fwmark; in ip_tunnel_newlink()
[all …]
/openbmc/linux/lib/zlib_dfltcc/
H A Ddfltcc_inflate.c46 return !param->nt; in dfltcc_was_inflate_used()
131 param->nt = 0; /* Honor history for the first block */ in dfltcc_inflate()
/openbmc/linux/net/switchdev/
H A Dswitchdev.c131 static int switchdev_port_attr_notify(enum switchdev_notifier_type nt, in switchdev_port_attr_notify() argument
144 rc = call_switchdev_blocking_notifiers(nt, dev, in switchdev_port_attr_notify()
223 static int switchdev_port_obj_notify(enum switchdev_notifier_type nt, in switchdev_port_obj_notify() argument
236 rc = call_switchdev_blocking_notifiers(nt, dev, &obj_info.info, extack); in switchdev_port_obj_notify()
352 enum switchdev_notifier_type nt, in switchdev_port_obj_act_is_deferred() argument
367 nt == SWITCHDEV_PORT_OBJ_ADD) || in switchdev_port_obj_act_is_deferred()
369 nt == SWITCHDEV_PORT_OBJ_DEL)) { in switchdev_port_obj_act_is_deferred()

1234