/linux-6.3-rc2/drivers/usb/gadget/legacy/ |
A D | nokia.c | 192 if (!IS_ERR_OR_NULL(f_phonet)) { in nokia_bind_config() 198 if (!IS_ERR_OR_NULL(f_obex1)) { in nokia_bind_config() 204 if (!IS_ERR_OR_NULL(f_obex2)) { in nokia_bind_config() 258 if (!IS_ERR_OR_NULL(f_obex2)) in nokia_bind_config() 260 if (!IS_ERR_OR_NULL(f_obex1)) in nokia_bind_config() 262 if (!IS_ERR_OR_NULL(f_phonet)) in nokia_bind_config() 361 if (!IS_ERR_OR_NULL(f_obex1_cfg1)) in nokia_bind() 363 if (!IS_ERR_OR_NULL(f_obex2_cfg1)) in nokia_bind() 391 if (!IS_ERR_OR_NULL(f_obex1_cfg2)) in nokia_unbind() 393 if (!IS_ERR_OR_NULL(f_obex2_cfg2)) in nokia_unbind() [all …]
|
A D | audio.c | 368 if (!IS_ERR_OR_NULL(f_uac1)) in audio_unbind() 370 if (!IS_ERR_OR_NULL(fi_uac1)) in audio_unbind() 373 if (!IS_ERR_OR_NULL(f_uac2)) in audio_unbind() 375 if (!IS_ERR_OR_NULL(fi_uac2)) in audio_unbind()
|
/linux-6.3-rc2/drivers/clk/mediatek/ |
A D | clk-mtk.c | 98 if (!IS_ERR_OR_NULL(clk_data->hws[rc->id])) { in mtk_clk_register_fixed_clks() 121 if (IS_ERR_OR_NULL(clk_data->hws[rc->id])) in mtk_clk_register_fixed_clks() 143 if (IS_ERR_OR_NULL(clk_data->hws[rc->id])) in mtk_clk_unregister_fixed_clks() 164 if (!IS_ERR_OR_NULL(clk_data->hws[ff->id])) { in mtk_clk_register_factors() 187 if (IS_ERR_OR_NULL(clk_data->hws[ff->id])) in mtk_clk_register_factors() 209 if (IS_ERR_OR_NULL(clk_data->hws[ff->id])) in mtk_clk_unregister_factors() 366 if (IS_ERR_OR_NULL(clk_data->hws[mcs->id])) in mtk_clk_register_composites() 388 if (IS_ERR_OR_NULL(clk_data->hws[mc->id])) in mtk_clk_unregister_composites() 435 if (IS_ERR_OR_NULL(clk_data->hws[mcd->id])) in mtk_clk_register_dividers() 457 if (IS_ERR_OR_NULL(clk_data->hws[mcd->id])) in mtk_clk_unregister_dividers() [all …]
|
A D | clk-cpumux.c | 122 if (!IS_ERR_OR_NULL(clk_data->hws[mux->id])) { in mtk_clk_register_cpumuxes() 144 if (IS_ERR_OR_NULL(clk_data->hws[mux->id])) in mtk_clk_register_cpumuxes() 163 if (IS_ERR_OR_NULL(clk_data->hws[mux->id])) in mtk_clk_unregister_cpumuxes()
|
/linux-6.3-rc2/drivers/pci/endpoint/ |
A D | pci-epc-core.c | 152 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_get_features() 225 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_raise_irq() 269 if (IS_ERR_OR_NULL(epc)) in pci_epc_map_msi_irq() 300 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_get_msi() 336 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions || in pci_epc_set_msi() 368 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_get_msix() 404 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions || in pci_epc_set_msix() 435 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_unmap_addr() 466 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_map_addr() 568 if (IS_ERR_OR_NULL(epc) || func_no >= epc->max_functions) in pci_epc_write_header() [all …]
|
A D | pci-epf-core.c | 119 if (!IS_ERR_OR_NULL(epc)) { in pci_epf_bind() 136 if (!IS_ERR_OR_NULL(epc)) { in pci_epf_bind() 191 if (IS_ERR_OR_NULL(epf_pf) || IS_ERR_OR_NULL(epf_vf)) in pci_epf_add_vepf() 232 if (IS_ERR_OR_NULL(epf_pf) || IS_ERR_OR_NULL(epf_vf)) in pci_epf_remove_vepf()
|
/linux-6.3-rc2/drivers/base/power/ |
A D | qos.c | 60 if (IS_ERR_OR_NULL(qos)) in __dev_pm_qos_flags() 120 ret = IS_ERR_OR_NULL(qos) ? PM_QOS_RESUME_LATENCY_NO_CONSTRAINT in dev_pm_qos_read_value() 124 ret = IS_ERR_OR_NULL(qos) ? PM_QOS_MIN_FREQUENCY_DEFAULT_VALUE in dev_pm_qos_read_value() 128 ret = IS_ERR_OR_NULL(qos) ? PM_QOS_MAX_FREQUENCY_DEFAULT_VALUE in dev_pm_qos_read_value() 418 if (IS_ERR_OR_NULL(req->dev->power.qos)) in __dev_pm_qos_update_request() 485 if (IS_ERR_OR_NULL(req->dev->power.qos)) in __dev_pm_qos_remove_request() 594 if (IS_ERR_OR_NULL(dev->power.qos)) in dev_pm_qos_remove_notifier() 720 if (IS_ERR_OR_NULL(dev->power.qos)) in dev_pm_qos_expose_latency_limit() 797 if (IS_ERR_OR_NULL(dev->power.qos)) in dev_pm_qos_expose_flags() 891 ret = IS_ERR_OR_NULL(dev->power.qos) in dev_pm_qos_get_user_latency_tolerance() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/lib/ |
A D | devcom.c | 131 if (IS_ERR_OR_NULL(devcom)) in mlx5_devcom_unregister_device() 157 if (IS_ERR_OR_NULL(devcom)) in mlx5_devcom_register_component() 174 if (IS_ERR_OR_NULL(devcom)) in mlx5_devcom_unregister_component() 191 if (IS_ERR_OR_NULL(devcom)) in mlx5_devcom_send_event() 222 if (IS_ERR_OR_NULL(devcom)) in mlx5_devcom_is_paired() 234 if (IS_ERR_OR_NULL(devcom)) in mlx5_devcom_get_peer_data()
|
A D | hv_vhca.c | 63 if (IS_ERR_OR_NULL(hv_vhca)) in mlx5_hv_vhca_destroy() 206 if (IS_ERR_OR_NULL(hv_vhca)) in mlx5_hv_vhca_init() 207 return IS_ERR_OR_NULL(hv_vhca); in mlx5_hv_vhca_init() 215 if (IS_ERR_OR_NULL(agent)) { in mlx5_hv_vhca_init() 217 return IS_ERR_OR_NULL(agent); in mlx5_hv_vhca_init() 230 if (IS_ERR_OR_NULL(hv_vhca)) in mlx5_hv_vhca_cleanup() 263 if (IS_ERR_OR_NULL(hv_vhca)) in mlx5_hv_vhca_agent_create()
|
A D | geneve.c | 67 if (IS_ERR_OR_NULL(geneve)) in mlx5_geneve_tlv_option_add() 118 if (IS_ERR_OR_NULL(geneve)) in mlx5_geneve_tlv_option_del() 150 if (IS_ERR_OR_NULL(geneve)) in mlx5_geneve_destroy()
|
/linux-6.3-rc2/drivers/net/wireless/ath/ath10k/ |
A D | ahb.c | 90 if (IS_ERR_OR_NULL(ar_ahb->cmd_clk)) { in ath10k_ahb_clock_init() 97 if (IS_ERR_OR_NULL(ar_ahb->ref_clk)) { in ath10k_ahb_clock_init() 104 if (IS_ERR_OR_NULL(ar_ahb->rtc_clk)) { in ath10k_ahb_clock_init() 127 if (IS_ERR_OR_NULL(ar_ahb->cmd_clk) || in ath10k_ahb_clock_enable() 128 IS_ERR_OR_NULL(ar_ahb->ref_clk) || in ath10k_ahb_clock_enable() 129 IS_ERR_OR_NULL(ar_ahb->rtc_clk)) { in ath10k_ahb_clock_enable() 242 if (IS_ERR_OR_NULL(ar_ahb->radio_cold_rst) || in ath10k_ahb_release_reset() 243 IS_ERR_OR_NULL(ar_ahb->radio_warm_rst) || in ath10k_ahb_release_reset() 245 IS_ERR_OR_NULL(ar_ahb->cpu_init_rst)) { in ath10k_ahb_release_reset() 313 if (IS_ERR_OR_NULL(ar_ahb->core_cold_rst) || in ath10k_ahb_halt_chip() [all …]
|
/linux-6.3-rc2/drivers/usb/typec/ |
A D | retimer.c | 52 if (!IS_ERR_OR_NULL(retimer)) in fwnode_typec_retimer_get() 67 if (!IS_ERR_OR_NULL(retimer)) { in typec_retimer_put() 76 if (IS_ERR_OR_NULL(retimer)) in typec_retimer_set() 147 if (!IS_ERR_OR_NULL(retimer)) in typec_retimer_unregister()
|
A D | mux.c | 131 if (IS_ERR_OR_NULL(sw)) in typec_switch_put() 210 if (IS_ERR_OR_NULL(sw)) in typec_switch_set() 233 if (!IS_ERR_OR_NULL(sw_dev)) in typec_switch_unregister() 399 if (IS_ERR_OR_NULL(mux)) in typec_mux_put() 417 if (IS_ERR_OR_NULL(mux)) in typec_mux_set() 498 if (!IS_ERR_OR_NULL(mux_dev)) in typec_mux_unregister()
|
/linux-6.3-rc2/drivers/usb/roles/ |
A D | class.c | 46 if (IS_ERR_OR_NULL(sw)) in usb_role_switch_set_role() 74 if (IS_ERR_OR_NULL(sw)) in usb_role_switch_get_role() 135 if (!IS_ERR_OR_NULL(sw)) in usb_role_switch_get() 157 if (!IS_ERR_OR_NULL(sw)) in fwnode_usb_role_switch_get() 172 if (!IS_ERR_OR_NULL(sw)) { in usb_role_switch_put() 367 if (!IS_ERR_OR_NULL(sw)) in usb_role_switch_unregister()
|
/linux-6.3-rc2/drivers/base/ |
A D | property.c | 57 if (IS_ERR_OR_NULL(fwnode)) in fwnode_property_present() 259 if (IS_ERR_OR_NULL(fwnode)) in fwnode_property_read_int_array() 414 if (IS_ERR_OR_NULL(fwnode)) in fwnode_property_read_string_array() 526 if (IS_ERR_OR_NULL(fwnode)) in fwnode_property_get_reference_args() 534 if (IS_ERR_OR_NULL(fwnode->secondary)) in fwnode_property_get_reference_args() 709 if (IS_ERR_OR_NULL(ancestor)) in fwnode_is_ancestor_of() 749 if (IS_ERR_OR_NULL(fwnode)) in fwnode_get_next_available_child_node() 773 if (IS_ERR_OR_NULL(fwnode)) in device_get_next_child_node() 849 if (IS_ERR_OR_NULL(fwnode)) in fwnode_device_is_available() 1014 if (IS_ERR_OR_NULL(parent)) in fwnode_graph_get_next_endpoint()
|
/linux-6.3-rc2/drivers/infiniband/hw/usnic/ |
A D | usnic_ib_qp_grp.c | 229 if (IS_ERR_OR_NULL(flow)) { in create_roce_custom_flow() 282 if (IS_ERR_OR_NULL(sock)) in create_udp_flow() 302 if (IS_ERR_OR_NULL(flow)) { in create_udp_flow() 354 if (!IS_ERR_OR_NULL(qp_flow)) { in create_and_add_flow() 429 if (IS_ERR_OR_NULL(qp_flow)) { in usnic_ib_qp_grp_modify() 444 if (IS_ERR_OR_NULL(qp_flow)) { in usnic_ib_qp_grp_modify() 557 if (IS_ERR_OR_NULL(res_chunk_list[i])) { in alloc_res_chunk_list() 690 if (IS_ERR_OR_NULL(qp_grp->res_chunk_list)) in usnic_ib_qp_grp_create() 706 if (IS_ERR_OR_NULL(qp_flow)) { in usnic_ib_qp_grp_create()
|
/linux-6.3-rc2/net/bluetooth/ |
A D | aosp.c | 57 if (IS_ERR_OR_NULL(skb)) { in aosp_do_open() 158 if (IS_ERR_OR_NULL(skb)) { in enable_quality_report() 180 if (IS_ERR_OR_NULL(skb)) { in disable_quality_report()
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/diag/ |
A D | rsc_dump.c | 133 if (IS_ERR_OR_NULL(dev->rsc_dump)) in mlx5_rsc_dump_cmd_create() 168 if (IS_ERR_OR_NULL(dev->rsc_dump)) in mlx5_rsc_dump_next() 267 if (IS_ERR_OR_NULL(dev->rsc_dump)) in mlx5_rsc_dump_destroy() 277 if (IS_ERR_OR_NULL(dev->rsc_dump)) in mlx5_rsc_dump_init() 306 if (IS_ERR_OR_NULL(dev->rsc_dump)) in mlx5_rsc_dump_cleanup()
|
/linux-6.3-rc2/include/linux/ |
A D | fwnode.h | 170 (!IS_ERR_OR_NULL(fwnode) && (fwnode)->ops && (fwnode)->ops->op) 174 (fwnode)->ops->op(fwnode, ## __VA_ARGS__) : (IS_ERR_OR_NULL(fwnode) ? -EINVAL : -ENXIO)) 201 if (IS_ERR_OR_NULL(fwnode)) in fwnode_dev_initialized()
|
/linux-6.3-rc2/sound/soc/codecs/ |
A D | lpass-macro-common.c | 27 if (IS_ERR_OR_NULL(l_pds->macro_pd)) { in lpass_macro_pds_init() 37 if (IS_ERR_OR_NULL(l_pds->dcodec_pd)) { in lpass_macro_pds_init()
|
/linux-6.3-rc2/kernel/bpf/preload/ |
A D | bpf_preload_kern.c | 17 if (!IS_ERR_OR_NULL(maps_link)) in free_links_and_skel() 19 if (!IS_ERR_OR_NULL(progs_link)) in free_links_and_skel()
|
/linux-6.3-rc2/kernel/power/ |
A D | qos.c | 468 ret = IS_ERR_OR_NULL(qos) ? in freq_qos_read_value() 473 ret = IS_ERR_OR_NULL(qos) ? in freq_qos_read_value() 534 if (IS_ERR_OR_NULL(qos) || !req || value < 0) in freq_qos_add_request() 621 if (IS_ERR_OR_NULL(qos) || !notifier) in freq_qos_add_notifier() 654 if (IS_ERR_OR_NULL(qos) || !notifier) in freq_qos_remove_notifier()
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ |
A D | egress_lgcy.c | 12 if (!IS_ERR_OR_NULL(vport->egress.legacy.drop_rule)) { in esw_acl_egress_lgcy_rules_destroy() 60 if (!IS_ERR_OR_NULL(vport->egress.legacy.drop_grp)) { in esw_acl_egress_lgcy_groups_destroy() 164 if (IS_ERR_OR_NULL(vport->egress.acl)) in esw_acl_egress_lgcy_cleanup()
|
A D | helper.c | 88 if (!IS_ERR_OR_NULL(vport->egress.allowed_vlan)) { in esw_acl_egress_vlan_destroy() 132 if (!IS_ERR_OR_NULL(vport->egress.vlan_grp)) { in esw_acl_egress_vlan_grp_destroy() 140 if (IS_ERR_OR_NULL(vport->egress.acl)) in esw_acl_egress_table_destroy()
|
/linux-6.3-rc2/drivers/i2c/ |
A D | i2c-core-slave.c | 24 if (WARN(IS_ERR_OR_NULL(client) || !slave_cb, "insufficient data\n")) in i2c_slave_register() 64 if (IS_ERR_OR_NULL(client)) in i2c_slave_unregister()
|