Home
last modified time | relevance | path

Searched refs:ntf (Results 1 – 18 of 18) sorted by relevance

/linux/net/nfc/nci/
A Dntf.c36 ndev->nci_ver = ntf->nci_ver; in nci_core_reset_ntf_packet()
38 ntf->nci_ver, ntf->config_status); in nci_core_reset_ntf_packet()
101 ntf->conn_id = nci_conn_id(&ntf->conn_id); in nci_core_conn_intf_error_ntf_packet()
103 pr_debug("status 0x%x, conn_id %d\n", ntf->status, ntf->conn_id); in nci_core_conn_intf_error_ntf_packet()
340 ntf.rf_protocol = *data++; in nci_rf_discover_ntf_packet()
380 ntf.ntf_type = *data++; in nci_rf_discover_ntf_packet()
544 ntf.rf_protocol = *data++; in nci_rf_intf_activated_ntf_packet()
624 &ntf, data); in nci_rf_intf_activated_ntf_packet()
629 &ntf, data); in nci_rf_intf_activated_ntf_packet()
702 pr_debug("entry, type 0x%x, reason 0x%x\n", ntf->type, ntf->reason); in nci_rf_deactivate_ntf_packet()
[all …]
A DMakefile8 nci-objs := core.o data.o lib.o ntf.o rsp.o hci.o
A Dcore.c1432 if (!op || !op->ntf) in nci_op_ntf_packet()
1435 return op->ntf(ndev, skb); in nci_op_ntf_packet()
/linux/tools/net/ynl/samples/
A Dnetdev.c64 struct ynl_ntf_base_type *ntf; in main() local
114 while ((ntf = ynl_ntf_dequeue(ys))) { in main()
115 netdev_print_device((struct netdev_dev_get_rsp *)&ntf->data, in main()
116 ntf->cmd); in main()
117 ynl_ntf_free(ntf); in main()
/linux/net/core/
A Dpage_pool_user.c261 struct sk_buff *ntf; in netdev_nl_page_pool_event() local
276 ntf = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL); in netdev_nl_page_pool_event()
277 if (!ntf) in netdev_nl_page_pool_event()
280 if (page_pool_nl_fill(ntf, pool, &info)) { in netdev_nl_page_pool_event()
281 nlmsg_free(ntf); in netdev_nl_page_pool_event()
285 genlmsg_multicast_netns(&netdev_nl_family, net, ntf, in netdev_nl_page_pool_event()
A Dnetdev-genl.c85 struct sk_buff *ntf; in netdev_genl_dev_notify() local
93 ntf = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL); in netdev_genl_dev_notify()
94 if (!ntf) in netdev_genl_dev_notify()
97 if (netdev_nl_dev_fill(netdev, ntf, &info)) { in netdev_genl_dev_notify()
98 nlmsg_free(ntf); in netdev_genl_dev_notify()
102 genlmsg_multicast_netns(&netdev_nl_family, dev_net(netdev), ntf, in netdev_genl_dev_notify()
/linux/tools/net/ynl/lib/
A Dynl.c729 struct ynl_ntf_base_type *ntf; in ynl_sock_destroy() local
732 while ((ntf = ynl_ntf_dequeue(ys))) in ynl_sock_destroy()
733 ynl_ntf_free(ntf); in ynl_sock_destroy()
740 void ynl_ntf_free(struct ynl_ntf_base_type *ntf) in ynl_ntf_free() argument
742 ntf->free(ntf); in ynl_ntf_free()
776 struct ynl_ntf_base_type *ntf; in ynl_ntf_dequeue() local
781 ntf = ys->ntf_first; in ynl_ntf_dequeue()
782 ys->ntf_first = ntf->next; in ynl_ntf_dequeue()
783 if (ys->ntf_last_next == &ntf->next) in ynl_ntf_dequeue()
786 return ntf; in ynl_ntf_dequeue()
A Dynl.h124 void ynl_ntf_free(struct ynl_ntf_base_type *ntf);
A Dynl-priv.h93 void (*free)(struct ynl_ntf_base_type *ntf);
125 void (*free)(struct ynl_ntf_base_type *ntf);
/linux/Documentation/netlink/specs/
A Dethtool.yaml704 name: cable-test-ntf
1186 name: linkinfo-ntf
1270 name: debug-ntf
1299 name: wol-ntf
1407 name: rings-ntf
1530 name: pause-ntf
1563 name: eee-ntf
1669 name: fec-ntf
1751 name: module-ntf
1863 name: plca-ntf
[all …]
A Ddpll.yaml462 name: device-create-ntf
467 name: device-delete-ntf
472 name: device-change-ntf
564 name: pin-create-ntf
569 name: pin-delete-ntf
574 name: pin-change-ntf
A Dnetdev.yaml522 name: dev-add-ntf
527 name: dev-del-ntf
532 name: dev-change-ntf
559 name: page-pool-add-ntf
565 name: page-pool-del-ntf
571 name: page-pool-change-ntf
/linux/tools/net/ynl/
A Dcli.py80 if args.ntf:
81 ynl.ntf_subscribe(args.ntf)
108 if args.ntf:
/linux/drivers/media/platform/rockchip/rkisp1/
A Drkisp1-dev.c186 struct v4l2_async_notifier *ntf = &rkisp1->notifier; in rkisp1_subdev_notifier_register() local
192 v4l2_async_nf_init(ntf, &rkisp1->v4l2_dev); in rkisp1_subdev_notifier_register()
194 ntf->ops = &rkisp1_subdev_notifier_ops; in rkisp1_subdev_notifier_register()
259 rk_asd = v4l2_async_nf_add_fwnode(ntf, source, in rkisp1_subdev_notifier_register()
285 v4l2_async_nf_cleanup(ntf); in rkisp1_subdev_notifier_register()
292 ret = v4l2_async_nf_register(ntf); in rkisp1_subdev_notifier_register()
294 v4l2_async_nf_cleanup(ntf); in rkisp1_subdev_notifier_register()
/linux/drivers/nfc/nxp-nci/
A Dcore.c117 .ntf = nxp_nci_rf_pll_unlocked_ntf,
121 .ntf = nxp_nci_rf_txldo_error_ntf,
/linux/drivers/staging/media/starfive/camss/
A Dstf-camss.c211 static int stfcamss_subdev_notifier_complete(struct v4l2_async_notifier *ntf) in stfcamss_subdev_notifier_complete() argument
214 container_of(ntf, struct stfcamss, notifier); in stfcamss_subdev_notifier_complete()
/linux/drivers/nfc/fdp/
A Dfdp.c670 .ntf = fdp_nci_core_reset_ntf_packet,
678 .ntf = fdp_nci_prop_patch_ntf_packet,
/linux/include/net/nfc/
A Dnci_core.h62 int (*ntf)(struct nci_dev *dev, struct sk_buff *skb); member

Completed in 44 milliseconds